From 4c499007fc12c606c8a34e4054c2e76d16e0f22e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 19:10:20 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1441 -------------------------------------------- 1 file changed, 1441 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 320c486..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", - subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - -export const metadata: Metadata = { - title: "AutoArchive - Complete Car Database & Automotive Encyclopedia", - description: "Search and explore every car ever made from 1886 to present. Access 2000+ manufacturers, 50,000+ models, technical specs, and automotive history.", - keywords: "car database, automotive encyclopedia, vehicle search, car specifications, manufacturer database, automotive history, vintage cars, modern vehicles", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "AutoArchive - The World's Most Complete Car Database", - description: "Explore every car ever made. Search across 2000+ manufacturers and 50,000+ models. The ultimate automotive encyclopedia.", - url: "https://autoarchive.example.com", - siteName: "AutoArchive", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaEFWytZ9QS584IizrKmiAvruy/a-modern-sleek-automotive-database-inter-1772823292340-23f02fb5.png", - alt: "AutoArchive Database Interface", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "AutoArchive - Complete Car Database", - description: "Search 50,000+ cars from 1886 to today. The world's most comprehensive automotive encyclopedia.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaEFWytZ9QS584IizrKmiAvruy/a-modern-sleek-automotive-database-inter-1772823292340-23f02fb5.png", - ], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -