scratch/src/layouts/Layout.astro
2026-05-12 03:02:53 -04:00

22 lines
472 B
Text

---
import '@styles/main.scss';
import Theme from '@components/Theme/Theme.svelte';
---
<!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" />
<link rel="icon" href="/favicon.ico" />
<meta name="generator" content={Astro.generator} />
<title>Proving Ground</title>
</head>
<body>
<Theme>
<slot />
</Theme>
</body>
</html>