diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7cc89b2..cb268e8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import { Halant } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ModPicker - AI Car & Motorcycle Modification Finder", description: "Upload your vehicle photo and discover perfect modifications with AI. Get direct links to buy parts from thousands of trusted retailers.", keywords: "car modifications, motorcycle customization, AI vehicle analysis, car parts, automotive upgrades, modification recommendations", metadataBase: new URL("https://modpicker.com"), - alternates: { - canonical: "https://modpicker.com" - }, - openGraph: { - title: "ModPicker - Transform Your Ride with AI", description: "Upload your vehicle and let AI recommend perfect modifications with direct purchase links.", url: "https://modpicker.com", siteName: "ModPicker", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARTBbll72gcJSq9e3PYOQBigsz/a-sleek-modern-ai-car-customization-dash-1772554375264-269dd76e.png", alt: "ModPicker AI modification platform" - } - ] - }, - twitter: { - card: "summary_large_image", title: "ModPicker - AI Modification Finder", description: "Discover perfect car and motorcycle modifications with AI technology.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARTBbll72gcJSq9e3PYOQBigsz/a-sleek-modern-ai-car-customization-dash-1772554375264-269dd76e.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "ModPicker - AI-Powered Vehicle Modifications", description: "Upload your vehicle photo and get AI-powered modification recommendations with direct purchase links."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}