Start building a "normal" page

This commit is contained in:
Daniel Kluge 2022-09-30 16:14:30 +02:00
parent a4fe9477c8
commit aab77d8352
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,7 @@
import type { NextPage } from "next";
const Navigation: NextPage<{}> = () => {
return <></>;
};
export default Navigation;

15
pages/blog.tsx Normal file
View File

@ -0,0 +1,15 @@
import type { NextPage } from "next";
import Head from "next/head";
const Blog: NextPage<{}> = () => {
return <>
<Head>
<title>c0ntroller.de</title>
</Head>
Hello
</>;
};
export default Blog;