generated from ooriyap/astro-docker-kit
20 lines
405 B
Plaintext
20 lines
405 B
Plaintext
|
|
---
|
||
|
|
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>
|