import { ReactNode } from "react"; import { Box, Container } from "@chakra-ui/react"; import { Footer, Navigation } from "components"; interface Props { children?: ReactNode; } function SiteWrapper({ children }: Props) { return ( {children}