diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 583bfd5..aad2b88 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { DM_Sans } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "@/styles/globals.css";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Dev Mart - Local Grocery Supermarket in Mandla", description: "Dev Mart is your trusted local grocery supermarket in Mandla serving fresh vegetables, fruits, dairy, and household essentials. Open daily 9:30 AM. 4.1★ rating.", keywords: "grocery store Mandla, fresh vegetables, supermarket, local store, household essentials, dairy products", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Dev Mart - Mandala Walon Ki Apni Dukaan", description: "Your trusted local grocery supermarket with fresh products and excellent service.", type: "website", siteName: "Dev Mart", images: [
- {
- url: "http://img.b2bpic.net/free-photo/woman-shopping-supermarket_53876-13562.jpg", alt: "Dev Mart Grocery Store"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Dev Mart - Local Grocery Store Mandla", description: "Fresh groceries and excellent service - Dev Mart", images: ["http://img.b2bpic.net/free-photo/woman-shopping-supermarket_53876-13562.jpg"],
- },
-};
+ title: "Dev Mart - Mandala Walon Ki Apni Dukaan", description: "Your trusted local grocery supermarket in Mandla serving fresh vegetables, quality dairy, and everyday essentials."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-