diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index f1cd3c9..9073c7e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,20 @@
import type { Metadata } from "next";
-import { DM_Sans } from "next/font/google";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Furniture Store Badlapur | Premium Designs & Same-Day Delivery", description: "Furniture Zone - Premium furniture store in Badlapur with 4.8★ rating. Bedroom, sofa, dining sets & custom furniture. Same-day delivery available. Call 079725 14636", keywords: "furniture store Badlapur, sofa sets Badlapur, bedroom furniture, modular kitchen, custom furniture, furniture delivery Badlapur", metadataBase: new URL("https://furniturezone.local"),
- alternates: {
- canonical: "https://furniturezone.local"
- },
- openGraph: {
- title: "Furniture Zone - Premium Furniture Store in Badlapur", description: "Discover premium furniture collections with 4.8★ rating. Custom designs, same-day delivery, and affordable pricing. Shop now!", type: "website", siteName: "Furniture Zone", images: [
- {
- url: "http://img.b2bpic.net/free-photo/chic-mid-century-modern-luxury-aesthetics-living-room-with-gray-velvet-couch-blue-rug_53876-134091.jpg", alt: "Premium Furniture at Furniture Zone"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Furniture Zone - Badlapur's Trusted Furniture Store", description: "Premium furniture with 4.8★ rating. Bedroom, sofa, dining sets & custom designs. Same-day delivery available.", images: ["http://img.b2bpic.net/free-photo/chic-mid-century-modern-luxury-aesthetics-living-room-with-gray-velvet-couch-blue-rug_53876-134091.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Furniture Zone Badlapur – Premium Furniture Store", description: "Premium Furniture Store in Badlapur – Modern Designs for Every Home. Same-Day Delivery | Customized Furniture | Trusted by 63+ Happy Customers"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-