diff --git a/components/navbar.tsx b/components/navbar.tsx deleted file mode 100644 index f9c216c..0000000 --- a/components/navbar.tsx +++ /dev/null @@ -1,141 +0,0 @@ -import { - Navbar as NextUINavbar, - NavbarContent, - NavbarMenu, - NavbarMenuToggle, - NavbarBrand, - NavbarItem, - NavbarMenuItem, -} from "@nextui-org/navbar"; -import { Button } from "@nextui-org/button"; -import { Kbd } from "@nextui-org/kbd"; -import { Link } from "@nextui-org/link"; -import { Input } from "@nextui-org/input"; -import { link as linkStyles } from "@nextui-org/theme"; -import NextLink from "next/link"; -import clsx from "clsx"; - -import { siteConfig } from "@/config/site"; -import { ThemeSwitch } from "@/components/theme-switch"; -import { - TwitterIcon, - GithubIcon, - DiscordIcon, - HeartFilledIcon, - SearchIcon, - Logo, -} from "@/components/icons"; - -export const Navbar = () => { - const searchInput = ( - - K - - } - labelPlacement="outside" - placeholder="Search..." - startContent={ - - } - type="search" - /> - ); - - return ( - - - - - - ACME - - - - {siteConfig.navItems.map((item) => ( - - - {item.label} - - - ))} - - - - - - - - - - - - - - - - - {searchInput} - - } - variant="flat" - > - Sponsor - - - - - - - - - - - - - - {searchInput} - - {siteConfig.navMenuItems.map((item, index) => ( - - - {item.label} - - - ))} - - - - ); -};
ACME