Update theme fonts

This commit is contained in:
2026-06-11 08:39:06 +00:00
parent 02805260d8
commit ce0ec3784e

View File

@@ -8,6 +8,7 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Figtree } from "next/font/google";
@@ -41,13 +42,10 @@ export const metadata: Metadata = {
},
};
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"]
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"]
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export default function RootLayout({
@@ -58,7 +56,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body className={`${figtree.variable} antialiased`}>
<Tag />
{children}
<script