"use client"; import { motion } from "framer-motion"; import Link from "next/link"; const navLinks = [ { href: "/experiences", label: "Experiences" }, { href: "/experiences/the-other-side", label: "The Other Side", featured: true }, { href: "/experiences/first-light", label: "First Light" }, { href: "/experiences/after-dark", label: "After Dark" }, { href: "/about", label: "About" }, { href: "/blog", label: "The Edit" }, { href: "/faq", label: "FAQ" }, { href: "/contact", label: "Contact" }, ]; interface MobileNavProps { onClose: () => void; } export function MobileNav({ onClose }: MobileNavProps) { return (
The Anatolian Edit
Book Your Experience
); }