From 8b1985756fe594d48347ee92f53e540a6a73ad81 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 10:59:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 +++++++----------------------------------- 1 file changed, 7 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f3a7d3f..18b6e49 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,47 +1,20 @@ import type { Metadata } from "next"; -import { Lato } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Dilber Sohan Halwa - Premium Traditional Pakistani Confectionery", description: "Authentic Sohan Halwa crafted with traditional recipes, premium desi ghee, and finest dry fruits. 40+ years of heritage excellence in Bannu.", keywords: "sohan halwa, Pakistani sweets, confectionery, desi ghee, dry fruits, traditional halwa, Bannu, authentic sweets", metadataBase: new URL("https://dilbersohanhalwa.com"), - alternates: { - canonical: "https://dilbersohanhalwa.com" - }, - openGraph: { - title: "Dilber Sohan Halwa - Premium Traditional Pakistani Confectionery", description: "Experience authentic Sohan Halwa with 40+ years of heritage. Premium ingredients, traditional craftsmanship.", url: "https://dilbersohanhalwa.com", siteName: "Dilber Sohan Halwa", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/cookies-roll-cake-board-blue-table_114579-82875.jpg", alt: "Premium Dilber Sohan Halwa" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Dilber Sohan Halwa - Premium Traditional Pakistani Confectionery", description: "Authentic Sohan Halwa with 40+ years of heritage. Premium desi ghee and finest dry fruits.", images: ["http://img.b2bpic.net/free-photo/cookies-roll-cake-board-blue-table_114579-82875.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Dilber Sohan Halwa - Premium Pakistani Confectionery", description: "Experience authentic Sohan Halwa crafted with traditional recipes, premium desi ghee, and finest dry fruits from Bannu, Pakistan."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}