Update theme fonts

This commit is contained in:
2026-06-11 08:39:21 +00:00
parent 82a596be8e
commit 442e22b2d0

View File

@@ -9,6 +9,7 @@ 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";
import { Source_Sans_3 } from "next/font/google";
@@ -43,8 +44,9 @@ export const metadata: Metadata = {
};
const figtree = Figtree({
variable: "--font-figtree",
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
});
@@ -56,7 +58,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body className={`${sourceSans3.variable} antialiased`}>
<Tag />
{children}
<script