aboutsummaryrefslogtreecommitdiff
path: root/components/layout.js
blob: 523abfe27375d1c78f13f0c3b68fbeecc2652ba6 (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 className="bg-gray-950 text-white">
        <Header />
        <body className="h-screen"><main>{children}</main></body>
        <Footer />
</html>
</>
  );
}