import Link from "next/link"; import { SITE_NAME, EMAIL, INSTAGRAM, WHATSAPP_NUMBER, WHATSAPP_MESSAGE } from "@/lib/constants"; import { NewsletterSignup } from "@/components/shared/NewsletterSignup"; const experienceLinks = [ { href: "/experiences/the-other-side", label: "The Other Side" }, { href: "/experiences/first-light", label: "First Light" }, { href: "/experiences/after-dark", label: "After Dark" }, ]; const companyLinks = [ { href: "/about", label: "About Us" }, { href: "/blog", label: "The Edit (Blog)" }, { href: "/faq", label: "FAQ" }, { href: "/contact", label: "Contact" }, ]; export function Footer() { const whatsappUrl = `https://wa.me/${WHATSAPP_NUMBER.replace("+", "")}?text=${encodeURIComponent(WHATSAPP_MESSAGE)}`; return ( ); }