From 5c4fcc6ad1e5074d0f685e287e181dba3466657e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 00:06:22 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2ecbc51..3c4ba2d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -97,7 +97,7 @@ export default function AboutPage() { { text: "Contact Us", href: "/contact" }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-vector/fashion-shopping-app-interface_23-2148659950.jpg" + imageSrc="http://img.b2bpic.net/free-vector/fashion-shopping-app-interface_23-2148659950.jpg?_wi=3" imageAlt="MarketHub community and marketplace" mediaAnimation="opacity" imagePosition="right" -- 2.49.1 From 30954cdbee91ffafbf697f8ae06b694352b3dea7 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 00:06:23 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 43 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..5da7be1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; +import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "MarketHub - Buy & Sell Online Marketplace", + description: "Discover MarketHub, India's trusted e-commerce marketplace. Browse millions of products from verified sellers. Shop safely with secure payments, buyer protection, and fast delivery.", + keywords: "online marketplace, buy online, sell online, e-commerce platform, shopping website, verified sellers, secure payments", + openGraph: { + title: "MarketHub - Buy & Sell Online Marketplace", + description: "Join millions shopping on MarketHub. Verified sellers, secure payments, fast delivery, and 24/7 support.", + url: "https://markethub.com", + siteName: "MarketHub", + images: [ + { + url: "http://img.b2bpic.net/free-vector/fashion-shopping-app-interface_23-2148659950.jpg", + alt: "MarketHub e-commerce marketplace" + } + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "MarketHub - Buy & Sell Online Marketplace", + description: "India's trusted e-commerce platform with verified sellers and secure transactions.", + images: ["http://img.b2bpic.net/free-vector/fashion-shopping-app-interface_23-2148659950.jpg"], + }, + robots: { + index: true, + follow: true, + }, + alternates: { + canonical: "https://markethub.com", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +63,9 @@ export default function RootLayout({ return ( - + {children}