diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d256d58..f512b19 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "SINGH MART | Best Hardware Store in Ludhiana", description: "Quality hardware materials, building supplies & tools in Ludhiana. Trusted local store with competitive prices. Visit SINGH MART near Verka Chowk today.", keywords: "hardware store Ludhiana, building materials Ludhiana, construction tools, hardware supplies, best hardware store near Verka Chowk", metadataBase: new URL("https://singh-mart.local"), - alternates: { - canonical: "https://singh-mart.local"}, - openGraph: { - title: "SINGH MART | Your Trusted Hardware Store", description: "Ludhiana's premium hardware store offering quality building materials, tools & construction supplies at competitive prices.", url: "https://singh-mart.local", siteName: "SINGH MART", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-pattern-from-set-construction-tools-as-screwdriver-pipe-wrench-safety-helmet-paint-brush-open-end-wrench-wooden-background_141793-15175.jpg", alt: "SINGH MART Hardware Store"}, - ], - }, - twitter: { - card: "summary_large_image", title: "SINGH MART - Best Hardware Store Ludhiana", description: "Quality hardware materials & construction tools. Visit us near Verka Chowk. Competitive prices, expert service.", images: ["http://img.b2bpic.net/free-photo/top-view-pattern-from-set-construction-tools-as-screwdriver-pipe-wrench-safety-helmet-paint-brush-open-end-wrench-wooden-background_141793-15175.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "SINGH MART - Premium Hardware Store in Ludhiana", description: "Your trusted hardware store in Ludhiana offering premium building materials, quality tools, and construction supplies at the best prices."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +