tmnt-fe/index.html
aarbit 12582c00a7
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Replaces most custom CSS with Bulma. Restyles app, and adds poster art.
2025-10-03 00:01:51 -05:00

18 lines
468 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@1.0.4/css/bulma.min.css"
>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TMNT</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>