This commit is contained in:
2025-02-02 02:13:50 -06:00
parent 0c1c729fd4
commit e118614d91
15 changed files with 4375 additions and 1 deletions

20
src/layouts/Layout.astro Normal file
View File

@ -0,0 +1,20 @@
---
import "../styles/global.css";
---
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>❤️</text></svg>"
/>
<meta name="generator" content={Astro.generator} />
<title>Ixabatasha</title>
</head>
<body class="flex items-center justify-center min-h-screen">
<slot />
</body>
</html>