summary refs log tree commit diff
path: root/app/layout.tsx
blob: 22e119115767222f996e34ade8010e3914ce2a5e (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 '~/components/layout/Header'
import Footer from '~/components/layout/Footer'

export default function SiteLayout({ children }: { children: ReactNode }) {
  return (
    <html>
      <head>
        <title>tempest.dev</title>
      </head>
      <body>
        <Header />
        {children}
        <Footer />
      </body>
    </html>
  )
}