mirror of
https://github.com/Unkn0wnCat/Unkn0wnCat.net.git
synced 2025-04-28 09:46:48 +02:00
14 lines
314 B
TypeScript
14 lines
314 B
TypeScript
import * as React from "react";
|
|
import type { HeadFC, PageProps } from "gatsby";
|
|
|
|
const IndexPage: React.FC<PageProps> = () => {
|
|
return (
|
|
<div>
|
|
<span>Unkn0wnCat.net</span>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default IndexPage;
|
|
|
|
export const Head: HeadFC = () => <title>Unkn0wnCat.net</title>;
|