From 5fa3b700b4bf45a3da34ee3501c67798dd43cd04 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 09:36:25 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 43 ++++++++++++++----------------------------- 1 file changed, 14 insertions(+), 29 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9231bb4..c536514 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,15 +1,19 @@ import type { Metadata } from "next"; -import { Poppins } from "next/font/google"; -import "./styles/variables.css"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; +import ServiceWrapper from "@/components/service/ServiceWrapper"; +import { Tag } from "@/components/ui/tag"; -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistSans = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "PetrolHeads - Car Enthusiasts Community", description: "Unite with car lovers and petrolheads. Discover the ultimate destination for automotive passion, performance, and community."}; + title: "CarLed - Petrolhead Community", description: "Discover the passion and innovation behind CarLed, celebrating the petrolhead community."}; export default function RootLayout({ children, @@ -18,25 +22,14 @@ export default function RootLayout({ }) { return ( - + {children} -