links/src/layouts/Layout.astro
2023-01-07 14:25:24 +01:00

15 lines
311 B
Text

---
import HeadCommon from '../components/HeadCommon.astro';
import HeadSEO from '../components/HeadSEO.astro';
---
<!DOCTYPE html>
<html dir="ltr" lang="sk-SK">
<head>
<HeadCommon />
<HeadSEO />
</head>
<body class="bg-primaryDotted bg-primaryDottedSize overflow-x-hidden">
<slot />
</body>
</html>