From bdd595325d1b15ddab667b5ad3691ba975a8bb25 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 18:10:02 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 297ec45..f36d348 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 { Raleway } from "next/font/google"; +import { Poppins } from "next/font/google"; @@ -14,9 +15,11 @@ export const metadata: Metadata = { description: 'Transform your online presence with PixelPerfect Agency. We craft stunning, high-performance websites tailored to your brand\'s unique vision and goals.', }; -const raleway = Raleway({ - variable: "--font-raleway", + +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -27,7 +30,7 @@ export default function RootLayout({ return ( - + {children}