"use client" import { ColorModeButton } from "@/components/docs/color-mode-button" import { Logo } from "@/components/logo" import { SocialLinks } from "@/components/social-links" import { docsConfig } from "@/docs.config" import { Button, Container, Dialog, HStack, IconButton, Spacer, Stack, chakra, } from "@chakra-ui/react" import Link from "next/link" import { AiOutlineClose, AiOutlineMenu } from "react-icons/ai" const HeaderRoot = chakra(Container, { base: { minH: "64px", display: "flex", flexDir: "row", alignItems: "center", gap: { base: "1", md: "4" }, }, }) const LogoLink = () => ( ) const NAV_LINKS = [ { title: "Docs", url: "/docs/get-started/installation" }, { title: "Playground", url: "/playground" }, { title: "Guides", url: "/guides" }, { title: "Blog", url: "/blog" }, ] const DesktopNav = () => ( {NAV_LINKS.map((item) => ( {item.title} ))} ) const MobileNavTrigger = () => ( ) const MobileNavCloseTrigger = () => ( ) const MobileNavContent = () => ( {NAV_LINKS.map((item) => ( ))} ) const MobileNav = () => { return ( ) } export const HeaderSection = () => { return ( ) }