9 Commits

Author SHA1 Message Date
9a01c7bbeb Switch to version 2: modified src/app/page.tsx 2026-03-08 20:19:59 +00:00
a6e1c3b5dc Switch to version 2: modified src/app/layout.tsx 2026-03-08 20:19:59 +00:00
11182558d5 Merge version_3 into main
Merge version_3 into main
2026-03-08 20:18:25 +00:00
3f3e4bf830 Update src/app/page.tsx 2026-03-08 20:18:21 +00:00
2be61ca482 Update src/app/layout.tsx 2026-03-08 20:18:20 +00:00
5b63a5901e Merge version_2 into main
Merge version_2 into main
2026-03-08 20:16:39 +00:00
a00d05783e Update src/app/page.tsx 2026-03-08 20:16:35 +00:00
594d66e043 Update src/app/layout.tsx 2026-03-08 20:16:35 +00:00
b26a6f6f61 Merge version_1 into main
Merge version_1 into main
2026-03-08 20:14:45 +00:00
2 changed files with 7 additions and 43 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "3D Car Visualization | Interactive Vehicle Explorer", description: "Experience the future of car shopping with immersive 3D vehicle visualization. Explore premium cars from every angle, customize options, and schedule test drives online.", keywords: "3D car visualization, interactive vehicle explorer, online car shopping, automotive 3D model, car configurator", robots: {
index: true,
follow: true,
},
openGraph: {
title: "3D Car Visualization Platform", description: "Explore premium vehicles in interactive 3D. The future of car buying is here.", type: "website", siteName: "AutoVisualize", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag3zD5g7ae2hkoPVOXG53PhfCe/a-stunning-3d-rendered-luxury-car-with-m-1773000722749-b9171367.png", alt: "3D Luxury Car Visualization"},
],
},
twitter: {
card: "summary_large_image", title: "Experience 3D Car Visualization", description: "Interactive 3D car models, instant customization, and transparent pricing.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag3zD5g7ae2hkoPVOXG53PhfCe/a-stunning-3d-rendered-luxury-car-with-m-1773000722749-b9171367.png"],
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -157,7 +157,7 @@ export default function LandingPage() {
<div className="mx-auto px-4 md:px-6 max-w-6xl">
<TestimonialCardThirteen
title="Trusted by Thousands"
description="See what our customers have to say about their 3D car buying experience and their satisfaction with our service."
description="98% Customer Satisfaction See what our customers have to say about their 3D car buying experience and their satisfaction with our service."
tag="Customer Reviews"
tagIcon={Star}
tagAnimation="slide-up"