diff --git a/src/app/layout.tsx b/src/app/layout.tsx index df5db22..4dff88c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "D Mart® Chota Bangarda | Hypermarket in Indore | Best Prices", description: "D Mart® Chota Bangarda is your trusted hypermarket in Indore. Affordable groceries, household essentials, and reputed brands. Open daily till 10 PM. Call 0731-261-2350.", keywords: "hypermarket in Indore, grocery store Chota Bangarda, best supermarket Indore, affordable grocery store near me, fresh groceries Indore, household essentials shop", metadataBase: new URL("https://dmartchotabangarda.com"), - alternates: { - canonical: "https://dmartchotabangarda.com"}, - openGraph: { - title: "D Mart® Chota Bangarda | Hypermarket in Indore", description: "Your neighborhood's trusted hypermarket for affordable groceries, household essentials, and top brands. Best prices in Indore. Open daily.", url: "https://dmartchotabangarda.com", siteName: "D Mart® Chota Bangarda", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/eco-bag-with-different-fruits-vegetables-shopping-cart_169016-5428.jpg", alt: "D Mart Chota Bangarda Hypermarket Store"}, - ], - }, - twitter: { - card: "summary_large_image", title: "D Mart® Chota Bangarda | Best Hypermarket in Indore", description: "Affordable groceries, trusted brands, best prices. Open daily till 10 PM. Visit us today!", images: ["http://img.b2bpic.net/free-photo/eco-bag-with-different-fruits-vegetables-shopping-cart_169016-5428.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "D Mart® Chota Bangarda - Indore's Trusted Hypermarket", description: "Top brands, best prices, fresh groceries. Shop smart, save more at D Mart® Chota Bangarda—your neighborhood hypermarket in Indore."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -