diff options
author | Ashelyn Rose <git@tempest.dev> | 2023-05-08 02:17:40 -0600 |
---|---|---|
committer | Ashelyn Rose <git@tempest.dev> | 2023-05-08 02:17:40 -0600 |
commit | 880cfbeb74546056feab63ed6e92a10c0dbaf2c3 (patch) | |
tree | 33c7429bd5b1b968d74c74a4b7fbf0aa072111f7 /app/layout.tsx | |
parent | 885d95d889633e312567d891831d74d9e120e5b8 (diff) |
New layout, uses nextjs
Diffstat (limited to 'app/layout.tsx')
-rw-r--r-- | app/layout.tsx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 0000000..3d25c44 --- /dev/null +++ b/app/layout.tsx @@ -0,0 +1,23 @@ +import React, { ReactNode } from 'react'; + +import 'victormono' +import '~/styles/layout.css' +import '~/styles/text.css' + +import Header from './Header' +import Footer from './Footer' + +export default function SiteLayout({ children }: { children: ReactNode }) { + return ( + <html> + <head> + <title>tempest.dev</title> + </head> + <body> + <Header /> + {children} + <Footer /> + </body> + </html> + ) +} |