Files
qr-generator/src/layouts/BaseLayout.astro

20 lines
405 B
Plaintext
Raw Normal View History

2026-04-17 12:17:33 +03:30
---
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>