Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a00d05783e | |||
| 594d66e043 | |||
| b26a6f6f61 |
@@ -1,55 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Manrope } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -157,7 +157,7 @@ export default function LandingPage() {
|
|||||||
<div className="mx-auto px-4 md:px-6 max-w-6xl">
|
<div className="mx-auto px-4 md:px-6 max-w-6xl">
|
||||||
<TestimonialCardThirteen
|
<TestimonialCardThirteen
|
||||||
title="Trusted by Thousands"
|
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"
|
tag="Customer Reviews"
|
||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user