feat: initial release

This commit is contained in:
2026-08-22 16:25:09 +05:00
commit 24bf56e8d1
9 changed files with 4642 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
---
import '../styles/global.css'
interface Props {
title: string
description: string
}
const { title, description } = Astro.props
---
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<meta name="description" content={description} />
<meta name="theme-color" content="#090a0a" />
<meta name="color-scheme" content="dark" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;1,400&family=IBM+Plex+Mono:wght@400;500;600&family=Inter&display=swap"
rel="stylesheet"
/>
<title>{title}</title>
</head>
<body>
<slot />
</body>
</html>