From 96a09fd2b80f7b092508d8fef9b99ca6bc4fea51 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 15:16:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 60 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 52 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d69bed8..bfb0b0b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,63 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans, Inter } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Luxury Vehicle Sales | Aircraft, Supercars & Motorcycles | TechClub Motors", - description: "Discover premium aircraft, helicopters, supercars, and motorcycles. TechClub Motors offers exclusive luxury vehicles with personalized concierge service for discerning clientele.", - keywords: "luxury vehicles, aircraft sales, helicopters, supercars, exotic motorcycles, premium transportation, aviation, exclusive collection", - metadataBase: new URL("https://techclubmotors.com"), - alternates: { - canonical: "https://techclubmotors.com", - }, - openGraph: { - title: "Luxury Vehicle Sales | TechClub Motors", - description: "Experience the pinnacle of automotive and aviation excellence. Explore our exclusive collection of premium vehicles.", - siteName: "TechClub Motors", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/well-dressed-beautiful-woman-sitting-front-seat-man-dressed-suit-standing-near-car-outdoors_613910-4822.jpg", - alt: "Premium luxury supercar collection", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Luxury Vehicle Sales | TechClub Motors", - description: "Discover premium aircraft, helicopters, supercars, and motorcycles.", - images: ["http://img.b2bpic.net/free-photo/private-luxury-jet-airport-terminal_657883-288.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "TechClub Motors - Luxury Vehicles & Lifestyle", description: "Discover exclusive luxury vehicles, aircraft, and motorcycles at TechClub Motors. Premium automotive experiences for discerning clients worldwide."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}