diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f4cb1af..3607c09 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Apple Shopping Mall - Affordable Groceries & Wholesale Shopping in Madurai", description: "Apple Shopping Mall in K Pudur, Madurai. Your one-stop destination for affordable groceries, stationery, gifts, toys & wholesale products. 4.1★ rating. Call 094435 06373.", keywords: "grocery store Madurai, shopping mall K Pudur, wholesale prices Madurai, stationery shop, toys gifts, affordable shopping, local retailer", metadataBase: new URL("https://appleshopmall.com"), - alternates: { - canonical: "https://appleshopmall.com"}, - openGraph: { - title: "Apple Shopping Mall - Affordable One-Stop Shopping in Madurai", description: "Best prices on groceries, stationery, gifts, toys & household items. Trusted by 1,900+ customers. Visit us at K Pudur, Madurai.", url: "https://appleshopmall.com", siteName: "Apple Shopping Mall", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/exterior-modern-buildings_1112-1993.jpg", alt: "Apple Shopping Mall Madurai"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Apple Shopping Mall - Best Prices in Madurai", description: "Your trusted destination for groceries, stationery, gifts & wholesale products at affordable prices in K Pudur.", images: ["http://img.b2bpic.net/free-photo/exterior-modern-buildings_1112-1993.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Apple Shopping Mall | Madurai's One-Stop Shopping Destination", description: "Groceries, Stationery, Gifts, Toys & More at Wholesale Prices – Located in K Pudur, Madurai"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}