From 7dc9dc257a98a536be7f220b4c3c235e436a9a92 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:14:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1414 +------------------------------------------- 1 file changed, 6 insertions(+), 1408 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7b05f02..4c6e703 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Madhav Foods - Wholesale Grocery Supplier Vasai-Virar", description: "Premium wholesale groceries for retailers, restaurants & caterers in Vasai-Virar. Competitive prices, reliable supply, fast local delivery. Rice, flour, pulses, oils & spices.", keywords: "wholesale grocery supplier Vasai, bulk grocer Vasai-Virar, wholesale vegetables, rice wholesale Vasai, dal supplier, flour wholesale, restaurant supplier", openGraph: { - title: "Madhav Foods - Wholesale Grocery Supplier", description: "Your trusted wholesale grocer in Vasai-Virar with competitive prices and reliable supply", type: "website", siteName: "Madhav Foods", images: [ - { - url: "http://img.b2bpic.net/free-photo/view-blurred-supermarket-with-cardboard-boxes_1203-1577.jpg", alt: "Wholesale grocery supplies"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Madhav Foods - Wholesale Grocery Supplier", description: "Premium bulk groceries at competitive prices in Vasai-Virar", images: ["http://img.b2bpic.net/free-photo/view-blurred-supermarket-with-cardboard-boxes_1203-1577.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Madhav Foods - Wholesale Grocery Supplier in Vasai-Virar", description: "Trusted wholesale grocery supplier in Vasai-Virar. Bulk groceries, competitive prices, fast delivery for retailers, restaurants, and caterers."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -