import { useState } from "react"; import { Link, useLocation } from "wouter"; import { Logo } from "@/components/ui/logo"; import { Sheet, SheetContent, SheetTrigger, SheetClose } from "@/components/ui/sheet"; import { Menu } from "lucide-react"; export default function Header() { const [location] = useLocation(); const isActive = (path: string) => { return location === path ? "text-white" : "text-white text-opacity-80 hover:text-white"; }; const navLinks = [ { name: "Class Calendar", path: "/calendar" }, { name: "Meet Fadia", path: "/about" }, { name: "Contact", path: "/contact" }, ]; return (
{/* Desktop Navigation */} {/* Mobile Menu */}
{navLinks.map((link) => ( {link.name} ))}
); }