Update theme fonts

This commit is contained in:
2026-04-20 11:56:34 +00:00
parent 3047645730
commit 4a8ef0024e

View File

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