diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 3ba8525..6817972 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-