diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fc1f2ad..0cee86c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,31 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: '--font-geist-sans', + subsets: ['latin'], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "SupplyZone | Industrial Supply Solutions Saudi Arabia", description: "Reliable industrial supplier offering warehouse equipment, material handling solutions, and safety products across Saudi Arabia. Fast quotes, competitive pricing, nationwide delivery.", keywords: "industrial supplier Saudi Arabia, warehouse equipment, material handling, safety products, pallet trucks, industrial tools, jeddah riyadh dammam", metadataBase: new URL("https://supplyzone.sa"), - alternates: { - canonical: "https://supplyzone.sa" - }, - openGraph: { - title: "SupplyZone | Trusted Industrial Supply Partner", description: "Quality industrial equipment with fast quotation and nationwide delivery across Saudi Arabia.", url: "https://supplyzone.sa", siteName: "SupplyZone", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/logistics-warehouse-with-empty-high-racks_181624-57353.jpg", alt: "SupplyZone Industrial Warehouse Solutions" - } - ] - }, - twitter: { - card: "summary_large_image", title: "SupplyZone | Industrial Supply Solutions", description: "Your trusted supplier for warehouse equipment and industrial solutions in Saudi Arabia.", images: ["http://img.b2bpic.net/free-photo/logistics-warehouse-with-empty-high-racks_181624-57353.jpg"] - }, - robots: { - index: true, - follow: true - } + title: 'SupplyZone - Industrial Supply Solutions in Saudi Arabia', + description: 'Reliable industrial supply solutions. Tools, warehouse equipment, safety products, and material handling solutions for businesses across Saudi Arabia.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -