From 67b6bee05cf08450d69391f132b01598b31c4817 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 18:09:44 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index becdc35..297ec45 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,23 +5,20 @@ import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Raleway } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); export const metadata: Metadata = { title: 'PixelPerfect Agency | Web Design & Development', 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", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -30,9 +27,7 @@ export default function RootLayout({ return ( - + {children}