Initial commit

This commit is contained in:
2026-04-17 12:17:33 +03:30
commit d4d5f02e89
21 changed files with 11426 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
---
import '../styles/global.css';
import SEO from '../components/meta/SEO.astro';
import type { Props as SEOProps } from '../components/meta/SEO.astro';
export type Props = SEOProps;
const seoProps = Astro.props;
---
<!doctype html>
<html lang="fa" dir="rtl">
<head>
<SEO {...seoProps} />
</head>
<body class="bg-gray-950 font-sans text-gray-100 antialiased">
<slot />
</body>
</html>