diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 99c7d38..fd017a5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1435 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Benways Hardware Store | Quality Building Materials Waiyaki Way", - description: "Premium hardware store in Nairobi providing cement, steel, plumbing, electrical supplies & construction materials. Located Waiyaki Way, Uthiru. Call now for quotes.", - keywords: "hardware store Waiyaki Way, construction materials Nairobi, building supplies Uthiru, cement supplier Kenya, steel reinforcement, plumbing materials", - metadataBase: new URL("https://benways-hardware.ke"), - alternates: { - canonical: "https://benways-hardware.ke", - }, - openGraph: { - title: "Benways Hardware Store - Quality Building Materials", - description: "Your trusted local hardware supplier in Nairobi. Cement, steel, plumbing, electrical supplies & more. Waiyaki Way, Uthiru.", - siteName: "Benways Hardware Store", - type: "website", - url: "https://benways-hardware.ke", - images: [ - { - url: "http://img.b2bpic.net/free-photo/artisan-jobs-tools-arrangement_23-2148732414.jpg", - alt: "Benways Hardware Store quality building materials", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Benways Hardware Store - Quality Building Materials", - description: "Premium construction materials & supplies in Waiyaki Way, Nairobi. Call now!", - images: ["http://img.b2bpic.net/free-photo/artisan-jobs-tools-arrangement_23-2148732414.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Benways Hardware Store", description: "Quality Building Materials You Can Trust"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -