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}