Base tailwind setup

This commit is contained in:
Alexis
2026-06-24 18:16:24 +02:00
parent f991976ef1
commit 4d3abde95a
6 changed files with 275 additions and 23 deletions

View File

@@ -0,0 +1,22 @@
---
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>