File size: 549 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import { Header } from "@/components/docs/header"
import { Container, SkipNavContent, SkipNavLink } from "@chakra-ui/react"
import { MobileSidebarNav, SidebarStart } from "./sidebar"
export default function Layout({ children }: { children: React.ReactNode }) {
return (
<>
<SkipNavLink>Skip to Content</SkipNavLink>
<Header />
<main>
<MobileSidebarNav />
<Container display="flex">
<SidebarStart />
<SkipNavContent />
{children}
</Container>
</main>
</>
)
}
|