import { Box } from 'components/primitives' import { FC, ReactNode } from 'react' import Navbar from './navbar' import { Footer } from './home/Footer' type Props = { children: ReactNode } const Layout: FC = ({ children }) => { return ( <>
{children}