From 5c4665224c444c7d10d29378428dd1e94e729b58 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 19:39:35 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index a53d32a..5c8f7da 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -74,7 +74,7 @@ export default function AboutPage() { author: "Premium Brands", description: "Handpicked products from trusted brands and sellers worldwide.", tags: ["Quality", "Trusted"], - imageSrc: "http://img.b2bpic.net/free-photo/store-assistant-recommending-shirt-sale-senior-woman_482257-93018.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/store-assistant-recommending-shirt-sale-senior-woman_482257-93018.jpg?_wi=4", imageAlt: "curated product selection shopping store", }, { @@ -83,7 +83,7 @@ export default function AboutPage() { author: "Direct Communication", description: "Order directly via WhatsApp with instant confirmation and support.", tags: ["Easy", "Direct"], - imageSrc: "http://img.b2bpic.net/free-vector/dating-application-concept_23-2148277325.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/dating-application-concept_23-2148277325.jpg?_wi=2", imageAlt: "WhatsApp messaging mobile chat interface", }, { @@ -92,7 +92,7 @@ export default function AboutPage() { author: "Simple Process", description: "Skip complicated forms. Add to cart and message—that's it.", tags: ["Quick", "Simple"], - imageSrc: "http://img.b2bpic.net/free-photo/man-holding-cup-medium-shot_23-2149013899.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-holding-cup-medium-shot_23-2149013899.jpg?_wi=3", imageAlt: "fast checkout quick payment process", }, { @@ -101,7 +101,7 @@ export default function AboutPage() { author: "Your Safety", description: "Your data is protected with industry-leading security standards.", tags: ["Safe", "Secure"], - imageSrc: "http://img.b2bpic.net/free-photo/man-holding-credit-card-hand-entering-security-code-using-laptop-keyboard_1423-158.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-holding-credit-card-hand-entering-security-code-using-laptop-keyboard_1423-158.jpg?_wi=3", imageAlt: "security lock protection digital safety", }, ]} -- 2.49.1 From 0a185eb62aac5a31aa038f6d71775c42b95dc318 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 19:39:35 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 41 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..d2b23e0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,58 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; +import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Mulish } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ShopHub - Premium E-Commerce Product Showcase | Order via WhatsApp", + description: "Discover premium products with seamless WhatsApp ordering. Shop curated collections, add to cart, and order directly. Fast, secure, and simple shopping experience.", + keywords: "e-commerce, shopping, WhatsApp ordering, products, online store, premium items, cart", + openGraph: { + title: "ShopHub - Premium Product Showcase", + description: "Shop curated premium products with WhatsApp integration. Browse, add to cart, order directly.", + siteName: "ShopHub", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/super-sale-fashion-landing-page_23-2148591413.jpg", + alt: "ShopHub - Premium Product Showcase", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ShopHub - Premium E-Commerce", + description: "Modern shopping with WhatsApp ordering. Browse 1000+ premium products.", + images: [ + "http://img.b2bpic.net/free-vector/super-sale-fashion-landing-page_23-2148591413.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +61,9 @@ export default function RootLayout({ return ( - + {children}