From 3a118c1f49b3e36b3013a5599621056d8abd4067 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 23:45:33 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 006c646..5c7a62e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,15 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); export const metadata: Metadata = { - title: "The Village Printer", description: "Professional printing services in Saukville, Wisconsin"}; + title: "The Village Printer", description: "Professional printing services in Saukville, Wisconsin" +}; export default function RootLayout({ children, @@ -14,7 +18,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}