mirror of
https://github.com/xHyroM/website.git
synced 2024-11-25 00:01:06 +01:00
feat: enable fireworks
This commit is contained in:
parent
b62b136ea0
commit
d81e9118a3
2 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,6 @@ import compress from "astro-compress";
|
|||
import preact from "@astrojs/preact";
|
||||
|
||||
// https://astro.build/config
|
||||
import prefetch from "@astrojs/prefetch";
|
||||
import robotsTxt from "astro-robots-txt";
|
||||
import minify from "./astro-integrations/minify";
|
||||
|
||||
|
@ -32,7 +31,6 @@ export default defineConfig({
|
|||
svg: false,
|
||||
html: false,
|
||||
}),
|
||||
prefetch(),
|
||||
robotsTxt({
|
||||
policy: [
|
||||
{
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
import SEOEmbed from "@components/widgets/SEOEmbed.astro";
|
||||
import Snow from "../components/widgets/decorations/Snow.astro";
|
||||
import Fireworks from "../components/widgets/decorations/Fireworks.astro";
|
||||
|
||||
const { title, description, keywords, schemaOrg } = {
|
||||
title: "xHyroM",
|
||||
|
@ -43,6 +44,7 @@ const { title, description, keywords, schemaOrg } = {
|
|||
<body class="overflow-x-hidden bg-dark-900 font-sans">
|
||||
<slot />
|
||||
<Snow />
|
||||
<Fireworks />
|
||||
|
||||
<script>
|
||||
import "@scripts/menu.ts";
|
||||
|
|
Loading…
Reference in a new issue