From 64249265e13ebfde72e6b9750f16c5786acf40df Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Wed, 9 Jul 2025 16:57:51 +0200 Subject: [PATCH] add dark --- src/components/Header_darkbg.tsx | 132 +++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/components/Header_darkbg.tsx 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 ( +
+ + + +
+ ) +}