diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f5fb3ed..320c486 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,19 +1,73 @@ 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: "Create Next App", description: "Generated by create next app" + 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} - + + + + {children} +