"use client"; import { Navbar as HeroUINavbar, NavbarContent, NavbarMenu, NavbarMenuToggle, NavbarBrand, NavbarItem, NavbarMenuItem, } from "@heroui/navbar"; import { Button } from "@heroui/button"; import { Link } from "@heroui/link"; import { link as linkStyles } from "@heroui/theme"; import NextLink from "next/link"; import clsx from "clsx"; import { useState } from "react"; import { motion, AnimatePresence } from "framer-motion"; import { siteConfig } from "@/config/site"; import { ThemeSwitch } from "@/components/theme-switch"; import { fontCursive } from "@/config/fonts"; import { HeartFilledIcon, CalendarIcon, MapPinIcon, Logo, } from "@/components/icons"; const getIcon = (label: string) => { switch (label.toLowerCase()) { case "home": return ; case "our story": return ; case "events": return ; case "gallery": return ; case "travel guide": return ; default: return ; } }; export const Navbar = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); return (

T & S

    {siteConfig.navItems.map((item) => ( {item.label} ))}
{isMenuOpen ? "CLOSE" : "MENU"}
{!isMenuOpen ? ( ) : ( )}
{siteConfig.navMenuItems.map((item, index) => ( setIsMenuOpen(false)} > {getIcon(item.label)} {item.label} ))}

Titas & Sukanya

January 2026

); };