summary refs log tree commit diff
path: root/app/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/layout.tsx')
-rw-r--r--app/layout.tsx23
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>
+  )
+}