import Link from 'next/link' import { Popover } from '@headlessui/react' import { AnimatePresence, motion } from 'framer-motion' import { Button } from '@/components/Button' import { Container } from '@/components/Container' import { Logo } from '@/components/Logo' import { NavLinks } from '@/components/NavLinks' function MenuIcon(props) { return ( ) } function ChevronUpIcon(props) { return ( ) } function MobileNavLink({ children, ...props }) { return ( {children} ) } export function Header() { return (
) }