mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 04:58:26 -04:00
* scss isn't worth the technical/mental overhead anymore * try to translate my old Hugo pygments themes * update lockfile * consolidate .hljs classes
17 lines
337 B
TypeScript
17 lines
337 B
TypeScript
import Header from "./page-header/Header";
|
|
import Footer from "./page-footer/Footer";
|
|
|
|
import styles from "./Layout.module.css";
|
|
|
|
const Layout = ({ children }) => (
|
|
<>
|
|
<Header />
|
|
<main className={styles.main}>
|
|
<div className={styles.container}>{children}</div>
|
|
</main>
|
|
<Footer />
|
|
</>
|
|
);
|
|
|
|
export default Layout;
|