mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 01:38:28 +00:00
46 lines
1.7 KiB
TypeScript
46 lines
1.7 KiB
TypeScript
import Link from "next/link"
|
|
|
|
import { siteConfig } from "@/config/site"
|
|
import { docsConfig } from "@/config/docs"
|
|
import { Icons } from "@/components/icons"
|
|
import { MainNav } from "@/components/main-nav"
|
|
import { DocsSearch } from "@/components/docs/search"
|
|
import { SiteFooter } from "@/components/site-footer"
|
|
import { DocsSidebarNav } from "@/components/docs/sidebar-nav"
|
|
|
|
interface DocsLayoutProps {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export default function DocsLayout({ children }: DocsLayoutProps) {
|
|
return (
|
|
<div className="flex min-h-screen flex-col">
|
|
<header className="sticky top-0 z-40 w-full border-b border-b-slate-200 bg-white">
|
|
<div className="container flex h-16 items-center space-x-4 sm:justify-between sm:space-x-0">
|
|
<MainNav items={docsConfig.mainNav}>
|
|
<DocsSidebarNav items={docsConfig.sidebarNav} />
|
|
</MainNav>
|
|
<div className="flex flex-1 items-center space-x-4 sm:justify-end">
|
|
<div className="flex-1 sm:flex-grow-0">
|
|
<DocsSearch />
|
|
</div>
|
|
<nav className="flex space-x-4">
|
|
<Link
|
|
href={siteConfig.links.github}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
<div className="flex h-7 w-7 items-center justify-center rounded-full bg-slate-900 text-slate-50 hover:bg-slate-600">
|
|
<Icons.gitHub className="h-4 w-4 fill-white" />
|
|
<span className="sr-only">GitHub</span>
|
|
</div>
|
|
</Link>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<div className="container flex-1">{children}</div>
|
|
<SiteFooter />
|
|
</div>
|
|
)
|
|
}
|