'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_darkbg } from '@/components/Logo_darkbg' function NavLinkDark({ href, children, }: { href: string children: React.ReactNode }) { return ( {children} ) } function MobileNavLink({ href, children, }: { href: string children: React.ReactNode }) { return ( {children} ) } function MobileNavIcon({ open }: { open: boolean }) { return ( ) } function MobileNavigation() { return ( {({ open }) => } About Ventures News
Contact Us
) } export function Header_darkbg() { return (
) }