Update src/app/layout.tsx

This commit is contained in:
2026-03-06 18:56:41 +00:00
parent e7ba5d2f43
commit d3a5758bc7

View File

@@ -7,50 +7,35 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
const lato = Lato({
variable: "--font-lato",
subsets: ["latin"],
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: {
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,
},
metadataBase: new URL("https://autoarchive.example.com"),
alternates: {
canonical: "https://autoarchive.example.com"},
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: [
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",
},
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaEFWytZ9QS584IizrKmiAvruy/a-modern-sleek-automotive-database-inter-1772822811540-4e4a72cf.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",
],
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-1772822811540-4e4a72cf.png"],
},
};
@@ -1438,4 +1423,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}