website/src/layouts/Layout.astro

39 lines
1.3 KiB
Text
Raw Normal View History

2022-12-04 14:46:22 +01:00
---
---
<!DOCTYPE html>
2022-12-04 15:30:42 +01:00
<html lang="sk-SK">
2022-12-04 14:46:22 +01:00
<head>
2022-12-04 15:30:42 +01:00
<!-- Primary Meta Tags -->
<title>xHyroM</title>
<meta name="title" content="xHyroM" />
<meta name="description" content="Ultimate placeholder text." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://hyrousek.tk/" />
<meta property="og:title" content="xHyroM" />
<meta property="og:description" content="Ultimate placeholder text." />
<meta
property="og:image"
content="https://metatags.io/assets/meta-tags-16a33a6a8531e519cc0936fbba0ad904e52d35f34a46c97a2c9f6f7dd7d336f2.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://hyrousek.tk/" />
<meta property="twitter:title" content="xHyroM" />
<meta
property="twitter:description"
content="Ultimate placeholder text."
/>
<meta
property="twitter:image"
content="https://metatags.io/assets/meta-tags-16a33a6a8531e519cc0936fbba0ad904e52d35f34a46c97a2c9f6f7dd7d336f2.png"
/>
2022-12-04 14:46:22 +01:00
</head>
2022-12-04 15:30:42 +01:00
<body class="bg-dark overflow-x-hidden font-['Poppins']">
2022-12-04 14:46:22 +01:00
<slot />
</body>
</html>