website/src/layouts/Layout.astro
2022-12-31 20:50:19 +01:00

69 lines
2.5 KiB
Text

---
---
<!DOCTYPE html>
<html lang="sk-SK">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 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"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" /><link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin
/><link
href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200;500;700;900&display=swap"
rel="stylesheet"
/>
</head>
<body class="bg-dark overflow-x-hidden font-['Source Code Pro']">
<slot />
<div class='fireworks-container h-full w-full absolute top-0 left-0 z-[-1000]' />
<script>
import "../scripts/menu.js";
import "../scripts/snow.js";
import { Fireworks } from 'fireworks-js';
export const fireworksContainer = document.querySelector<HTMLDivElement>(
'.fireworks-container'
)!
const fireworks = new Fireworks(fireworksContainer, {
particles: 200,
rocketsPoint: {
min: 0,
max: 100,
}
})
fireworks.start()
</script>
</body>
</html>