1 parent 2bb2b88 commit 34a822cCopy full SHA for 34a822c
1 file changed
src/layouts/Layout.astro
@@ -8,6 +8,7 @@ import Navbar from "@components/Nav/Navbar.astro";
8
import ThemeProvider from "@components/Nav/ThemeProvider.astro";
9
import NativeViewTransitions from "@components/ViewTransitions/NativeViewTransitions.astro";
10
import "../../src/styles/global.css";
11
+import type { $brand } from "astro:schema";
12
13
interface Props {
14
title: string;
@@ -39,7 +40,7 @@ const { title, description = "Lukas' Homepage" } = Astro.props;
39
40
<Webmentions />
41
<Favicon />
42
<Font cssVariable="--font-lobster" preload />
- <Font cssVariable="--font-inter" preload />
43
+ <Font cssVariable="--font-inter" preload={[{style: "normal"}]} />
44
<Font cssVariable="--font-jetbrains-mono" />
45
<slot name="preload" />
46
<slot name="head" />
0 commit comments