aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-05-09 16:59:23 +0200
committerlonkaars <loek@pipeframe.xyz>2021-05-09 16:59:23 +0200
commit5a0f2ed7af3bb804219c1be07969103572384ceb (patch)
treebb87a04560201d8af6e6e4ca5d84f8a06b8c3ace /pages
parent87f7bd7b20277786c39726db397caf1971abb956 (diff)
add next.js project files
Diffstat (limited to 'pages')
-rw-r--r--pages/_app.tsx14
-rw-r--r--pages/index.tsx6
2 files changed, 20 insertions, 0 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx
new file mode 100644
index 0000000..bcab146
--- /dev/null
+++ b/pages/_app.tsx
@@ -0,0 +1,14 @@
+import Head from 'next/head';
+
+import '../styles/globals.css';
+import '../styles/colors.css';
+
+export default function Blog({ Component, pageProps }) {
+ return <>
+ <Head>
+ <title>pressure</title>
+ <link as='style' href='/font/font.css' />
+ </Head>
+ <Component {...pageProps} />
+ </>;
+}
diff --git a/pages/index.tsx b/pages/index.tsx
new file mode 100644
index 0000000..99c2ab8
--- /dev/null
+++ b/pages/index.tsx
@@ -0,0 +1,6 @@
+export default function Index() {
+ return <>
+ <h1>gert</h1>
+ </>;
+}
+