diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 511ccac..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Auto Parts Abu Dhabi | Desert Fox - Fast Supply & Competitive Prices", description: "Premium auto parts supplier in Musaffah, Abu Dhabi. 1000+ parts in stock. Fast response. Competitive wholesale pricing for workshops and car owners.", keywords: "auto parts Abu Dhabi, spare parts Musaffah, brake pads, car batteries, filters, auto supplier UAE", metadataBase: new URL("https://desertfoxautoparts.ae"), - alternates: { - canonical: "https://desertfoxautoparts.ae" - }, - openGraph: { - title: "Desert Fox Auto Parts - Abu Dhabi", description: "Fast, reliable auto parts supply for workshops and car owners in Abu Dhabi", url: "https://desertfoxautoparts.ae", siteName: "Desert Fox Auto Parts Trading LLC", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/view-toolbox-machines_1170-1504.jpg", alt: "Desert Fox Auto Parts Warehouse" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Desert Fox Auto Parts Abu Dhabi", description: "Premium auto parts supplier with fast response and competitive pricing", images: ["http://img.b2bpic.net/free-photo/view-toolbox-machines_1170-1504.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -