Update theme fonts

This commit is contained in:
2026-04-09 23:14:35 +00:00
parent 99c96bbfab
commit 7533f30905

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Roboto } from "next/font/google";
@@ -22,9 +23,11 @@ export const metadata: Metadata = {
};
const montserrat = Montserrat({
variable: "--font-montserrat",
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -35,7 +38,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}>
<body className={`${roboto.variable} antialiased`}>
{children}
<script