9 Commits

Author SHA1 Message Date
3c720d8a52 Merge version_3 into main
Merge version_3 into main
2026-03-04 11:02:24 +00:00
33bf701424 Update src/app/page.tsx 2026-03-04 11:02:20 +00:00
4045a69a39 Update src/app/layout.tsx 2026-03-04 11:02:20 +00:00
d6d6133a5d Merge version_2 into main
Merge version_2 into main
2026-03-04 10:59:31 +00:00
7b2350e767 Update src/app/page.tsx 2026-03-04 10:59:27 +00:00
8b1985756f Update src/app/layout.tsx 2026-03-04 10:59:27 +00:00
f6448374cc Merge version_1 into main
Merge version_1 into main
2026-03-04 10:57:48 +00:00
aeb5ca9b39 Merge version_1 into main
Merge version_1 into main
2026-03-04 10:56:53 +00:00
ea33641150 Merge version_1 into main
Merge version_1 into main
2026-03-04 10:55:15 +00:00
2 changed files with 13 additions and 38 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1409,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -77,11 +77,14 @@ export default function LandingPage() {
<div id="products" data-section="products">
<ProductCardOne
title="Our Premium Collection"
description="Handcrafted Sohan Halwa varieties made with traditional methods and the finest ingredients. Each product is a celebration of authentic Pakistani confectionery."
description="Authentic Bannu Sohan Halwa from ₨2,500 to ₨5,000 per box. Handcrafted varieties made with traditional methods and the finest ingredients. Each product is a celebration of authentic Pakistani confectionery."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
gridVariant="three-columns-all-equal-width"
buttons={[
{ text: "Browse All Products", href: "#contact" }
]}
products={[
{
id: "1", name: "Classic Sohan Halwa", price: "₨2,500", imageSrc: "http://img.b2bpic.net/free-photo/green-yellow-turkish-delights-bowl-towel-marble-table_114579-72584.jpg", imageAlt: "Classic Sohan Halwa"
@@ -229,4 +232,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}