Update theme fonts

This commit is contained in:
2026-03-15 13:13:27 +00:00
parent d9fc1faad6
commit 206da6ec57

View File

@@ -7,6 +7,7 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
import { Mulish } from "next/font/google";
import { Figtree } from "next/font/google";
@@ -16,8 +17,9 @@ export const metadata: Metadata = {
};
const mulish = Mulish({
variable: "--font-mulish",
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
@@ -29,7 +31,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<body className={`${figtree.variable} antialiased`}>
<Tag />
{children}
<script