dgf-prototype/frontend/index.html

14 lines
361 B
HTML
Raw Permalink Normal View History

2024-02-21 18:01:41 -06:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
2024-03-14 18:58:18 -05:00
<link rel="icon" type="image/svg+xml" href="/dgf.svg" />
2024-02-21 18:01:41 -06:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2024-02-21 19:24:30 -06:00
<title>DGF Prototype</title>
</head>
<body>
<div id="root"></div>
2024-04-25 21:45:34 -05:00
<script type="module" src="/src/main.jsx"></script>
2024-02-21 18:01:41 -06:00
</body>
</html>