From e6109876c5714255e9f57e8292ddbffdf5b74e7c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 06:40:47 +0000 Subject: [PATCH 1/5] Update src/app/checkout/page.tsx --- src/app/checkout/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index 024e81f..f53addf 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -78,7 +78,7 @@ export default function CheckoutPage() { id: "1", name: "Premium Leather Messenger Bag", price: "$129.99", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-round-mystery-box_23-2149516475.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-round-mystery-box_23-2149516475.jpg?_wi=6", imageAlt: "Premium leather messenger bag", initialQuantity: 1, }, @@ -86,7 +86,7 @@ export default function CheckoutPage() { id: "2", name: "Ultra-Compact Tech Device", price: "$299.99", - imageSrc: "http://img.b2bpic.net/free-vector/technology-landing-page-with-photo_52683-22730.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/technology-landing-page-with-photo_52683-22730.jpg?_wi=5", imageAlt: "Ultra-compact tech device", initialQuantity: 1, }, @@ -94,7 +94,7 @@ export default function CheckoutPage() { id: "3", name: "Organic Wellness Starter Kit", price: "$79.99", - imageSrc: "http://img.b2bpic.net/free-photo/cannabis-cannabis-seeds-cannabis-oil-placed-wooden-floor-with-green-tree-background_1150-18860.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/cannabis-cannabis-seeds-cannabis-oil-placed-wooden-floor-with-green-tree-background_1150-18860.jpg?_wi=5", imageAlt: "Organic wellness starter kit", initialQuantity: 1, }, -- 2.49.1 From 3ac551f939a8b811d4dc70cede42d763386ea793 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 06:40:47 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++++++++++++++++++++++++++++------------ 1 file changed, 31 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..9d9e095 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,44 @@ 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 { getVisualEditScript } from "@/utils/visual-edit-script"; -import { DM_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "ShopHub - Secure E-Commerce Platform & Payment Gateway", + description: "Shop premium products with secure payments, exclusive coupons, and seamless checkout. Sell online with our comprehensive seller tools and analytics.", + keywords: "e-commerce, online shopping, secure payment, digital marketplace, coupon codes, seller platform", + openGraph: { + title: "ShopHub - Your Trusted Online Shopping Destination", + description: "Discover curated products with secure payment options and exclusive discounts", + siteName: "ShopHub", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "ShopHub - Premium E-Commerce Platform", + description: "Shop smart, sell smart with ShopHub", + }, +}; export default function RootLayout({ children, @@ -31,7 +48,9 @@ export default function RootLayout({ return ( - + {children}