blob: 3d25c44095d94906374bdebfa5160b6c044aefdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>
)
}
|