From 19ef6c04c5fb3383eb9208f853c32324c9f3aee6 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 18:45:20 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1418 +------------------------------------------- 1 file changed, 8 insertions(+), 1410 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 50a1824..a152c13 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); +import { Analytics } from "@vercel/analytics/react"; +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "Luxury Porsche Sports Cars | Premium Performance | ICAR AUTOS", description: "Experience engineered excellence with ICAR AUTOS. Discover premium Porsche sports cars featuring cutting-edge technology, precision performance, and unmatched luxury. Book your test drive today.", keywords: "Porsche dealership, luxury sports cars, high-performance vehicles, Porsche 911, premium automotive, test drive booking", openGraph: { - title: "Luxury Porsche Sports Cars - Pure Performance", description: "Experience the engineering excellence of Porsche. Premium sports cars built for performance enthusiasts.", siteName: "ICAR AUTOS", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfkSxiVtjUzVJ8T2uLbhIPsTa8/uploaded-1772994911773-emjh6n54.png", alt: "Silver Porsche 911 GT3 - Luxury Sports Car"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Luxury Porsche Sports Cars - ICAR AUTOS", description: "Discover premium engineering excellence with our exclusive Porsche collection.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfkSxiVtjUzVJ8T2uLbhIPsTa8/uploaded-1772994911773-emjh6n54.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ICAR AUTOS - Luxury Porsche Vehicles", description: "Experience engineering excellence with ICAR AUTOS. Discover premium Porsche vehicles, cutting-edge technology, and precision performance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - -