Goose v2 base frontend (#2374)

Co-authored-by: Alex Hancock <alexhancock@block.xyz>
This commit is contained in:
Zane
2025-04-28 07:20:00 -07:00
committed by GitHub
parent 669a0a58d9
commit f3e586e724
44 changed files with 16367 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline';" />
<link href="/src/index.css" rel="stylesheet">
<title>Goose v2</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/web.tsx"></script>
</body>
</html>