Update theme fonts

This commit is contained in:
2026-06-07 18:22:38 +00:00
parent 09ba3e5981
commit 2544530ab4

View File

@@ -6,6 +6,7 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -39,8 +40,13 @@ export const metadata: Metadata = {
},
};
const nunito = Nunito({
variable: "--font-nunito",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
@@ -52,7 +58,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
{children}
<script