aboutsummaryrefslogtreecommitdiff
path: root/components/layout.js
blob: 14eeff79774a2f9413a207167029d934fbd0467f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Header from './header';
import Footer from './footer';

export default function Layout({ children }) {
  return (
    <>
      <html class="bg-gray-950 text-white">
        <Header />
        <body class="h-screen"><main>{children}</main></body>
        <Footer />
</html>
</>
  );
}