import Link from "next/link"; import { ThemeSwitcher } from "../themeSwitcher"; import { Navbar, NavbarBrand, NavbarContent, NavbarItem, Button, } from "@nextui-org/react"; export default async function Header() { const sections = ["anime", "kdrama", "manga", "movies", "web-series"]; return (

Dramalama

{sections && sections.map((item, index) => ( {item} ))}
); }