aboutsummaryrefslogtreecommitdiff
path: root/pages/_app.tsx
blob: 96182ab3eb51de3bb1ee9470c12852765bc7848b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Head from 'next/head';

import '../components/play-skip_60fps.css';
import '../styles/colors.css';
import '../styles/editor.css';
import '../styles/globals.css';
import '../styles/keyframes.css';
import '../styles/paper.css';
import '../styles/presentation.css';
import '../styles/util.css';

export default function Blog({ Component, pageProps }) {
	return <>
		<Head>
			<title>pressure</title>
			<link as='style' href='/font/font.css' />
		</Head>
		<Component {...pageProps} />
	</>;
}