|
|
|
|
@@ -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>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|