This commit is contained in:
Salam-vsem
2025-05-12 20:46:39 +03:00
commit ba30833279
43 changed files with 8562 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
---
import '@/styles/global.css'
type Props = {
title: string
}
const { title } = Astro.props
---
<!doctype html>
<html lang={Astro.currentLocale}>
<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>{title}</title>
</head>
<body class="flex flex-col">
<slot />
</body>
</html>