From 7411a0f8a69783667c76bcbff3509177519faad1 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 11:04:44 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1408 +------------------------------------------- 1 file changed, 6 insertions(+), 1402 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0764195..17a5d68 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Audi Club | Premium Automotive Community", description: "Join the exclusive Audi Club community. Access premium events, track days, and networking opportunities for Audi enthusiasts worldwide.", keywords: "Audi club, automotive community, track days, luxury car events, Audi owners", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Audi Club | Premium Automotive Community", description: "Experience the pinnacle of automotive excellence. Join our exclusive Audi enthusiast community.", type: "website", siteName: "Audi Club", images: [ - { - url: "http://img.b2bpic.net/free-vector/lightened-luxury-sedan-car-darkness-with-headlamps-rear-lights-lit-realistic-image-reflection_1284-28803.jpg", alt: "Audi Club Premium Experience"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Audi Club | Premium Automotive Community", description: "Join exclusive track days, premium events, and connect with 1,200+ Audi enthusiasts.", images: ["http://img.b2bpic.net/free-vector/lightened-luxury-sedan-car-darkness-with-headlamps-rear-lights-lit-realistic-image-reflection_1284-28803.jpg"], - }, -}; + title: "Audi Club - Exclusive Automotive Community", description: "Join the premier Audi Club. Experience luxury automotive excellence, exclusive events, and a global community of enthusiasts."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - -