'use client' import Link from 'next/link' import { Popover, PopoverButton, PopoverBackdrop, PopoverPanel, } 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: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function ChevronUpIcon(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function MobileNavLink( props: Omit< React.ComponentPropsWithoutRef>, 'as' | 'className' >, ) { return ( ) } export function Header() { return ( {({ open }) => ( <> {({ open }) => open ? ( ) : ( ) } {open && ( <> Features Reviews Pricing FAQs Log in Download the app > )} > )} Info Participate ) }