From 22e8ce34405cdec88b249b5e9d9fee70cbf1fc07 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 04:47:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 90dccaa..d3f0618 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 { 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: "Honey Confectionery - Fresh Cakes & Bakery in Yamuna Vihar, Delhi", description: "Best bakery in Yamuna Vihar offering fresh cakes, pastries, and custom cake orders. Open daily. Call 087009 45501 or order on WhatsApp.", keywords: "bakery Yamuna Vihar, cakes Delhi, custom cake Shahdara, fresh pastries, birthday cake order", metadataBase: new URL("https://honeyconfectionery.com"), - alternates: { - canonical: "https://honeyconfectionery.com"}, - openGraph: { - title: "Honey Confectionery - Fresh Cakes & Bakery", description: "Fresh, delicious cakes and pastries made daily in Yamuna Vihar. Order your custom cake today!", url: "https://honeyconfectionery.com", siteName: "Honey Confectionery", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/medium-shot-man-shopping-with-mask_23-2149445494.jpg", alt: "Fresh cakes at Honey Confectionery"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Honey Confectionery - Fresh Cakes & Bakery", description: "Best bakery in Yamuna Vihar for fresh cakes and pastries", images: ["http://img.b2bpic.net/free-photo/medium-shot-man-shopping-with-mask_23-2149445494.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Honey Confectionery - Fresh Cakes & Bakery in Yamuna Vihar", description: "Delicious cakes, pastries, and fresh bakery products made daily in Yamuna Vihar, Delhi. Order your custom cake today or visit us for freshly baked treats."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}