diff --git a/src/components/Header_darkbg.tsx b/src/components/Header_darkbg.tsx new file mode 100644 index 0000000..cda7663 --- /dev/null +++ b/src/components/Header_darkbg.tsx @@ -0,0 +1,132 @@ +'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 ( +
+ + + +
+ ) +}