From 33d30ff131369bd417175d013b9979288d678788 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 07:00:24 +0000 Subject: [PATCH 1/8] Update src/app/admin/page.tsx --- src/app/admin/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx index e1c4ba9..d40e182 100644 --- a/src/app/admin/page.tsx +++ b/src/app/admin/page.tsx @@ -144,17 +144,17 @@ export default function AdminDashboard() { { title: "Product Management", description: "Add, edit, and organize your product catalog with bulk operations and inventory tracking", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/a-dynamic-modern-electronics-and-gadgets-1773644363717-8291799e.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/a-dynamic-modern-electronics-and-gadgets-1773644363717-8291799e.png?_wi=3", }, { title: "Order Processing", description: "Track, manage, and fulfill orders with automated notifications and shipping integration", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/a-stylish-fashion-and-accessories-displa-1773644362884-40813846.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/a-stylish-fashion-and-accessories-displa-1773644362884-40813846.png?_wi=3", }, { title: "Customer Insights", description: "Analyze customer behavior, track retention, and manage relationships with detailed reports", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/a-curated-home-and-living-products-displ-1773644362559-f9b733f1.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/a-curated-home-and-living-products-displ-1773644362559-f9b733f1.png?_wi=3", }, ]} /> -- 2.49.1 From 51a8fb82f22a4f36a7679f7ceb1af9e1a7fb033b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 07:00:24 +0000 Subject: [PATCH 2/8] 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 c1a90d3..67b9e46 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -93,17 +93,17 @@ export default function CheckoutPage() { { title: "Payment Security", description: "Industry-leading SSL encryption and PCI DSS compliance ensure your payment information is always protected.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/premium-black-wireless-headphones-photog-1773644362190-f9cdd8ec.png" + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/premium-black-wireless-headphones-photog-1773644362190-f9cdd8ec.png?_wi=11" }, { title: "Multiple Payment Options", description: "Choose from credit cards, debit cards, UPI, and other payment methods for your convenience.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/classic-gray-or-navy-durable-backpack-di-1773644362240-56e35eb6.png" + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/classic-gray-or-navy-durable-backpack-di-1773644362240-56e35eb6.png?_wi=5" }, { title: "Order Confirmation", description: "Receive instant order confirmation via email with tracking information and order details.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/modern-wifi-smart-speaker-in-sleek-white-1773644362309-5ffaa95b.png" + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/modern-wifi-smart-speaker-in-sleek-white-1773644362309-5ffaa95b.png?_wi=6" } ]} /> -- 2.49.1 From 4e04072219449bcfea6a098702a7b2c36edd1c9b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 07:00:24 +0000 Subject: [PATCH 3/8] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..d55acd9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } 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 { Manrope } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ShopHub - Modern E-Commerce Store | Shop Quality Products Online", + description: "Discover thousands of quality products at ShopHub. Secure checkout, fast shipping, and excellent customer service. Shop electronics, fashion, home & living.", + keywords: "online shopping, e-commerce, buy products, secure checkout, fast shipping, quality items", + metadataBase: new URL("https://shophub.com"), + alternates: { + canonical: "https://shophub.com", + }, + openGraph: { + title: "ShopHub - Modern E-Commerce Store", + description: "Shop thousands of curated products with secure checkout and fast delivery.", + url: "https://shophub.com", + siteName: "ShopHub", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/a-vibrant-modern-e-commerce-website-inte-1773644363176-4b7d7e84.png", + alt: "ShopHub - Modern E-Commerce Platform", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ShopHub - Start Shopping Today", + description: "Quality products, secure payments, fast shipping. Your trusted online store.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B16WyTQPOK5hGA6xQKhjS1SW6D/a-vibrant-modern-e-commerce-website-inte-1773644363176-4b7d7e84.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}