15 lines
239 B
TypeScript
15 lines
239 B
TypeScript
|
import type { NextPage } from "next";
|
||
|
import Head from "next/head";
|
||
|
|
||
|
const Blog: NextPage<{}> = () => {
|
||
|
|
||
|
return <>
|
||
|
<Head>
|
||
|
<title>c0ntroller.de</title>
|
||
|
</Head>
|
||
|
Hello
|
||
|
</>;
|
||
|
|
||
|
};
|
||
|
|
||
|
export default Blog;
|