diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 082f595..e46ca50 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Vanimathi Supermarket | Fresh Groceries in Madurai", description: "Premium supermarket in Ponmeni, Madurai offering fresh groceries, household essentials, and quality products 24 hours. Affordable prices, friendly service, trusted local store.", keywords: "supermarket madurai, grocery store ponmeni, fresh groceries, household essentials, 24 hour store, affordable prices, madurai shopping", metadataBase: new URL("https://vanimathi-supermarket.local"), - alternates: { - canonical: "https://vanimathi-supermarket.local" - }, - openGraph: { - title: "Vanimathi Supermarket | Fresh Groceries in Madurai", description: "Premium supermarket in Ponmeni, Madurai with fresh groceries, quality products, and 24-hour service. Trusted by families for affordable shopping.", url: "https://vanimathi-supermarket.local", siteName: "Vanimathi Supermarket", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Vanimathi Supermarket | Fresh Groceries in Madurai", description: "Premium supermarket in Ponmeni, Madurai. Open 24 hours with fresh groceries and affordable prices." - }, - robots: { - index: true, - follow: true - } -}; + title: "Vanimathi Supermarket – Your Trusted Grocery Store in Madurai", description: "Fresh groceries, quality products, and affordable prices available 24 hours for your daily needs."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -