'use client' import Link from 'next/link' import { Popover, PopoverButton, PopoverBackdrop, PopoverPanel, } from '@headlessui/react' import clsx from 'clsx' import { Button } from '@/components/Button' import { Container } from '@/components/Container' import { Logo } from '@/components/Logo' import { NavLink } from '@/components/NavLink' function MobileNavLink({ href, children, }: { href: string children: React.ReactNode }) { return ( {children} ) } function MobileNavIcon({ open }: { open: boolean }) { return ( ) } function MobileNavigation() { return ( {({ open }) => } Features Testimonials Pricing
Sign in
) } export function Header() { return (
) }