From 69df78734f6ad6d9271af7172d5633030457c967 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 13:51:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 85a9298..3a47e98 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Sweetly Bliss - Premium Indian Sweets & Kurkure Samosas", description: "Indulge in authentic handcrafted sweets and crispy snacks. From traditional Gulab Jamun to premium Kurkure Samosas, experience pure taste and quality.", keywords: "Indian sweets, Kurkure samosa, gulab jamun, premium confectionery, online sweet shop, traditional sweets", openGraph: { - title: "Sweetly Bliss - Premium Sweets & Snacks", description: "Handcrafted traditional sweets and crispy snacks delivered fresh. 100% premium ingredients, authentic recipes.", siteName: "Sweetly Bliss", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-delicious-indian-dessert-plate_23-2149312393.jpg", alt: "Premium Indian sweets collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Sweetly Bliss - Premium Sweets & Kurkure Samosas", description: "Authentic handcrafted sweets and premium snacks. Fresh daily, delivered to your door.", images: ["http://img.b2bpic.net/free-photo/high-angle-delicious-indian-dessert-plate_23-2149312393.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Sweetly Bliss - Premium Indian Sweets & Snacks", description: "Discover authentic Indian sweets and premium snacks handcrafted with love since 1998. Fast delivery, 100% premium ingredients, no preservatives."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}