2022-2024 – Collaboration with the Maison de l’Urbanité. Liège (BE)
La Maison de l’Urbanité is a government-funded non-profit organization dedicated to raising awareness about public spaces in the urban landscape.
My graphic work for the organization included :
- A complete rebranding, including a new logo, visual identity, and graphic guidelines
- Website redesign for improved usability and engagement
- Design of posters and artworks for various events
- Creation of brochures, leaflets, and exhibition panels to support different projects
document.addEventListener(“DOMContentLoaded”, function () {
const images = document.querySelectorAll(“.lazy-img”);
let observer = new IntersectionObserver((entries, observer) => {
entries
.sort((a, b) => a.target.getBoundingClientRect().top – b.target.getBoundingClientRect().top) // Sort by position
.forEach(entry => {
if (entry.isIntersecting) {
let img = entry.target;
img.src = img.getAttribute(“data-src”);
img.removeAttribute(“data-src”);
img.classList.add(“loaded”);
observer.unobserve(img);
}
});
}, { rootMargin: “100px 0px”, threshold: 0.1 });
images.forEach(img => observer.observe(img));
});