From ea59513257f6430848ef8f17af30c277866ad7ad Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:35:06 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c33093d..ff5c465 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Happy Waffles - Best Waffles in Vile Parle, Mumbai | 5.0 Rated", description: "Discover Mumbai's most loved waffles in Vile Parle. Fresh, crispy, and delicious. Open 9 PM. Call now or order on WhatsApp for bulk orders and late-night cravings.", keywords: "best waffles Vile Parle, waffles Mumbai, Kit Kat waffle, late night dessert, waffle delivery, bulk waffle orders, 5 star waffles", metadataBase: new URL("https://happywaffles.com"), - alternates: { - canonical: "https://happywaffles.com"}, - openGraph: { - title: "Happy Waffles - Best Waffles in Vile Parle, Mumbai", description: "Crispy outside, soft inside. Premium quality waffles at affordable prices. 5.0 rated by 150+ customers. Open 9 PM onwards.", url: "https://happywaffles.com", siteName: "Happy Waffles", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/vertical-shot-delicious-waffles-with-chocolate-dip-white-table_181624-35642.jpg", alt: "Happy Waffles - Premium waffle experience"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Happy Waffles - Best Waffles in Vile Parle", description: "Fresh, crispy waffles made with love. 5.0 rating. Order now via WhatsApp or call!", images: ["http://img.b2bpic.net/free-photo/vertical-shot-delicious-waffles-with-chocolate-dip-white-table_181624-35642.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Happy Waffles - Mumbai's Most Loved Waffles", description: "Perfectly crispy waffles with rich chocolate flavor. 5.0 rated in Vile Parle. Open late at night. Order now!"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}