2025-11-25 09:37:22 +01:00
|
|
|
---
|
|
|
|
|
import Header from '../components/Header.astro'
|
|
|
|
|
import '../styles/global.css'
|
|
|
|
|
---
|
|
|
|
|
|
2025-11-24 10:31:49 +01:00
|
|
|
<!doctype html>
|
2025-11-25 09:37:22 +01:00
|
|
|
<html class="
|
|
|
|
|
m-0 w-svw h-svh
|
|
|
|
|
text-slate-950 bg-slate-200 select-none
|
|
|
|
|
" lang="pl">
|
|
|
|
|
<!-- dark:text-slate-100 dark:bg-slate-950 -->
|
2025-11-24 10:31:49 +01:00
|
|
|
<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>Astro Basics</title>
|
|
|
|
|
</head>
|
2025-11-25 09:37:22 +01:00
|
|
|
<body class="flex flex-col p-2">
|
|
|
|
|
<Header />
|
|
|
|
|
<main class="
|
|
|
|
|
grow
|
|
|
|
|
2xl:mx-auto p-4 rounded-md
|
|
|
|
|
w-[92rem] max-w-full
|
|
|
|
|
bg-slate-100 drop-shadow-slate-300 drop-shadow-md
|
|
|
|
|
block
|
|
|
|
|
">
|
|
|
|
|
<slot />
|
|
|
|
|
</main>
|
2025-11-24 10:31:49 +01:00
|
|
|
</body>
|
|
|
|
|
</html>
|