Files
web/src/layouts/Layout.astro
T
2026-01-03 00:44:49 +02:00

22 lines
462 B
Plaintext

---
import '../styles/app.css'
const {title} = Astro.props
---
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>Subtle Storm</title>
<script src="../components/scripts/user_store.js"></script>
</head>
<body>
<h1>{title}</h1>
<slot />
</body>
</html>