From aab77d83529799b4642e744a0e754639ed795163 Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Fri, 30 Sep 2022 16:14:30 +0200 Subject: [PATCH] Start building a "normal" page --- components/Blog/Navigation.tsx | 7 +++++++ pages/blog.tsx | 15 +++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 components/Blog/Navigation.tsx create mode 100644 pages/blog.tsx diff --git a/components/Blog/Navigation.tsx b/components/Blog/Navigation.tsx new file mode 100644 index 0000000..932602a --- /dev/null +++ b/components/Blog/Navigation.tsx @@ -0,0 +1,7 @@ +import type { NextPage } from "next"; + +const Navigation: NextPage<{}> = () => { + return <>; +}; + +export default Navigation; diff --git a/pages/blog.tsx b/pages/blog.tsx new file mode 100644 index 0000000..56f28c8 --- /dev/null +++ b/pages/blog.tsx @@ -0,0 +1,15 @@ +import type { NextPage } from "next"; +import Head from "next/head"; + +const Blog: NextPage<{}> = () => { + + return <> + + c0ntroller.de + + Hello + ; + +}; + +export default Blog; \ No newline at end of file