aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-03-26 17:38:45 +0100
committerlonkaars <l.leblansch@gmail.com>2021-03-26 17:38:45 +0100
commitc0318023f8b8f52347fa9fd7c654e42b7e0f68aa (patch)
tree70f4be4326b9c9429042ae6b85b2f42b42564ec6 /pages
initial commit
Diffstat (limited to 'pages')
-rw-r--r--pages/_app.tsx6
-rw-r--r--pages/index.tsx5
2 files changed, 11 insertions, 0 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx
new file mode 100644
index 0000000..8b4d14a
--- /dev/null
+++ b/pages/_app.tsx
@@ -0,0 +1,6 @@
+import '../styles/globals.css'
+
+export default function Blog({ Component, pageProps }) {
+ return <Component {...pageProps} />
+}
+
diff --git a/pages/index.tsx b/pages/index.tsx
new file mode 100644
index 0000000..6bb8b72
--- /dev/null
+++ b/pages/index.tsx
@@ -0,0 +1,5 @@
+export default function Home() {
+ return <div>
+ <h1>Hello World!</h1>
+ </div>
+}