From c3a6920d83d718b411de4792b029e9635b7a1da0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 23:08:09 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1481706..e329246 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Raleway } from "next/font/google"; +import { Public_Sans } from "next/font/google"; @@ -15,8 +16,9 @@ export const metadata: Metadata = { description: 'Unlock your SaaS potential. Our specialized development team builds high-performance, secure, and scalable SaaS applications that drive innovation and user engagement.', }; -const raleway = Raleway({ - variable: "--font-raleway", + +const publicSans = Public_Sans({ + variable: "--font-public-sans", subsets: ["latin"], }); @@ -28,7 +30,7 @@ export default function RootLayout({ return ( - + {children}