Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7ea8de82a4 | |||
| 96a09fd2b8 | |||
| e959a8ec04 | |||
| 682a1ab04f | |||
| a7dab0f087 | |||
| 79abb56e83 |
@@ -1,63 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { DM_Sans, Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-dm-sans",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Luxury Vehicle Sales | Aircraft, Supercars & Motorcycles | TechClub Motors",
|
title: "TechClub Motors - Luxury Vehicles & Lifestyle", description: "Discover exclusive luxury vehicles, aircraft, and motorcycles at TechClub Motors. Premium automotive experiences for discerning clients worldwide."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1425,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -240,7 +240,7 @@ const HomePage = () => {
|
|||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Schedule Consultation", href: "contact" },
|
{ text: "Find Your Vehicle", href: "contact" },
|
||||||
{ text: "Browse Catalog", href: "products" },
|
{ text: "Browse Catalog", href: "products" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -284,4 +284,4 @@ const HomePage = () => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default HomePage;
|
export default HomePage;
|
||||||
|
|||||||
Reference in New Issue
Block a user