Merge version_2 into main #2
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user