File size: 595 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 { FooterSection } from "@/components/site/footer.section"
import { HeaderSection } from "@/components/site/header.section"
import { Container, SkipNavContent, SkipNavLink } from "@chakra-ui/react"
export default function Layout({ children }: { children: React.ReactNode }) {
return (
<>
<SkipNavLink>Skip to Content</SkipNavLink>
<HeaderSection />
<main>
<Container display="flex">
<SkipNavContent />
{children}
</Container>
</main>
<FooterSection />
</>
)
}
|