7 Commits

Author SHA1 Message Date
08572aeadb Merge version_2 into main
Merge version_2 into main
2026-03-03 15:16:35 +00:00
7ea8de82a4 Update src/app/page.tsx 2026-03-03 15:16:30 +00:00
96a09fd2b8 Update src/app/layout.tsx 2026-03-03 15:16:29 +00:00
e959a8ec04 Merge version_1 into main
Merge version_1 into main
2026-03-03 15:11:38 +00:00
682a1ab04f Merge version_1 into main
Merge version_1 into main
2026-03-03 15:10:17 +00:00
a7dab0f087 Merge version_1 into main
Merge version_1 into main
2026-03-03 15:08:03 +00:00
79abb56e83 Merge version_1 into main
Merge version_1 into main
2026-03-03 15:05:29 +00:00
2 changed files with 10 additions and 54 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1425,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -240,7 +240,7 @@ const HomePage = () => {
background={{ variant: "plain" }}
useInvertedBackground={true}
buttons={[
{ text: "Schedule Consultation", href: "contact" },
{ text: "Find Your Vehicle", href: "contact" },
{ text: "Browse Catalog", href: "products" },
]}
/>
@@ -284,4 +284,4 @@ const HomePage = () => {
);
};
export default HomePage;
export default HomePage;