Start building a "normal" page
This commit is contained in:
parent
a4fe9477c8
commit
aab77d8352
7
components/Blog/Navigation.tsx
Normal file
7
components/Blog/Navigation.tsx
Normal file
@ -0,0 +1,7 @@
|
||||
import type { NextPage } from "next";
|
||||
|
||||
const Navigation: NextPage<{}> = () => {
|
||||
return <></>;
|
||||
};
|
||||
|
||||
export default Navigation;
|
15
pages/blog.tsx
Normal file
15
pages/blog.tsx
Normal 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;
|
Loading…
Reference in New Issue
Block a user