"use client"; import { BsGithub, BsTwitter } from "react-icons/bs"; import { Header, Item } from "@/types/landing"; import DropDown from "./dropdown"; import { usePathname } from "next/navigation"; export default ({ header }: { header: Header }) => { const pathname = usePathname(); return (

{header?.brand?.avatar?.title {header?.brand?.title}

    {header?.nav?.items?.map((item: Item, idx: number) => { return (
  • {item.title}
  • ); })}
{/*
Dashboard
*/}
); };