mirror of
https://github.com/thepigeongenerator/www.thepigeongenerator.xyz.git
synced 2025-12-17 23:15:45 +01:00
initialize project
This commit is contained in:
29
web/index.html
Normal file
29
web/index.html
Normal 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
1
web/src/d.ts
Normal file
@@ -0,0 +1 @@
|
||||
declare const NDEBUG: boolean;
|
||||
5
web/src/main.tsx
Normal file
5
web/src/main.tsx
Normal 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 />)
|
||||
Reference in New Issue
Block a user