From 0d7d5a73b58b2548094cb55ef8ba9a70b8156114 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 21:14:21 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ba7ff9b..aa5544d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Public_Sans } from "next/font/google"; +import { Roboto } from "next/font/google"; @@ -19,13 +20,11 @@ export const metadata: Metadata = { }, }; -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); -const inter = Inter({ - variable: "--font-inter", + +const roboto = Roboto({ + variable: "--font-roboto", subsets: ["latin"], + weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -36,7 +35,7 @@ export default function RootLayout({ return ( - + {children}