initialize project

This commit is contained in:
2025-05-26 22:59:14 +02:00
commit 10ba53626f
7 changed files with 106 additions and 0 deletions

29
web/index.html Normal file
View File

@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="https://placehold.co/64x64">
<title>PLACEHOLDER</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- social media embed thingies -->
<!-- TODO: replace PLACEHOLDER -->
<meta property="og:type" content="website" />
<meta property="og:title" content="PLACEHOLDER" />
<meta property="og:description" content="PLACEHOLDER" />
<meta property="og:url" content="https://www.thepigeongenerator.xyz/" />
<meta property="og:image" content="https://placehold.co/3000x3000" id="embed-image" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="3000" />
<meta property="og:image:height" content="3000" />
<meta property="og:image:alt" content="PLACEHOLDER" />
<!-- scripts -->
<script type="text/javascript" src="/script.js" defer></script>
</head>
<body id="root">
</body>
</html>

1
web/src/d.ts Normal file
View File

@@ -0,0 +1 @@
declare const NDEBUG: boolean;

5
web/src/main.tsx Normal file
View File

@@ -0,0 +1,5 @@
import React from 'react'
import { createRoot } from 'react-dom/client'
const Main = () => <h1>Hello, World</h1>
createRoot(document.getElementById("root")!).render(<Main />)