import { FC } from "react"; import { Flex, VStack, Button, Link, useColorModeValue } from "@chakra-ui/react"; import { Header, Footer } from "."; type Props = { [key: string]: any }; const Layout: FC = ({ children, ...props }) => ( <>
{children}