// Libraries import { Container, Flex, Stack } from '@chakra-ui/react'; import { FC } from 'react'; // Components import { Header } from '../UI'; import { Footer } from './Footer'; interface Props { children?: React.ReactNode; } export const Layout: FC = ({ children }) => { return ( {/* adding min-height & top margin to keep footer at the bottom of the page */}
{children}