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