Casa Nidal

A digital archive of voicemails from Grandpa Levi.

Project

This website is a digital archive of my favorite voicemails from my grandpa.

There’s a sign on the front of my grandparents' house that says Casa Nidal. Funny enough, I’ve never heard anyone —neither my grandparents nor my family— call it that. But Casa Nidal feels like the perfect name for this website: a place to gather small, meaningful moments, much like their home itself.

This is my way of preserving these memories and sharing them with those who hold this home as close to their hearts as I do.

// About Overlay Functionality document.getElementById("about-link").addEventListener("click", (e) => { e.preventDefault(); // Show the existing About overlay const aboutOverlay = document.getElementById("aboutOverlay"); aboutOverlay.classList.add("active"); // Close functionality for the close button aboutOverlay.querySelector(".close-button").addEventListener("click", () => { aboutOverlay.classList.remove("active"); }); // Close overlay when clicking outside the content aboutOverlay.addEventListener("click", (e) => { if (e.target === aboutOverlay) { aboutOverlay.classList.remove("active"); } }); });