Files
aerocity/src/layouts/BaseLayout.astro
2026-06-24 18:16:24 +02:00

23 lines
442 B
Plaintext

---
import "../styles/global.css";
const { title } = Astro.props;
---
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width" />
<title>{ title }</title>
</head>
<body>
<main>
<slot />
</main>
</body>
</html>