7 Commits

Author SHA1 Message Date
5f3f4c6ddc Update src/app/page.tsx 2026-03-05 19:14:56 +00:00
e43df17159 Update src/app/layout.tsx 2026-03-05 19:14:56 +00:00
ad8980fe96 Merge version_2 into main
Merge version_2 into main
2026-03-05 19:12:56 +00:00
c2a0a1ee29 Update src/app/layout.tsx 2026-03-05 19:12:52 +00:00
aa67a33725 Merge version_1 into main
Merge version_1 into main
2026-03-05 19:12:10 +00:00
148ba365bb Merge version_1 into main
Merge version_1 into main
2026-03-05 19:11:20 +00:00
018864e087 Merge version_1 into main
Merge version_1 into main
2026-03-05 19:10:17 +00:00
2 changed files with 9 additions and 40 deletions

View File

@@ -1,50 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "DriveLux | Premium Automotive Excellence", description: "Discover luxury vehicles engineered for performance. Explore our exclusive collection of premium cars with cutting-edge technology and exceptional design.", keywords: "luxury cars, premium vehicles, automotive, sports cars, SUVs, performance", metadataBase: new URL("https://drivelux.com"),
openGraph: {
title: "DriveLux | Premium Automotive Excellence", description: "Experience the pinnacle of automotive luxury and performance", type: "website", siteName: "DriveLux"},
twitter: {
card: "summary_large_image", title: "DriveLux | Premium Automotive Excellence", description: "Discover luxury vehicles engineered for performance"},
robots: {
index: true,
follow: true,
},
};
title: "DriveLux - Premium Automotive Excellence", description: "Experience the pinnacle of automotive luxury and performance with DriveLux"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -41,7 +41,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="DRIVELUX"
description="Experience the pinnacle of automotive luxury and performance. Discover our exclusive collection of premium vehicles engineered for excellence."
description="Discover our exclusive collection of premium vehicles engineered for excellence—reserved for discerning drivers."
buttons={[
{ text: "Explore Models", href: "#models" },
{ text: "Schedule Tour", href: "#contact" }
@@ -166,4 +166,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}