From ccd070d99e656bbaeefc3263aae316f522acfd90 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 16:48:56 +0000 Subject: [PATCH 1/5] Update src/app/browse/page.tsx --- src/app/browse/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/browse/page.tsx b/src/app/browse/page.tsx index 8ab0c98..e09760f 100644 --- a/src/app/browse/page.tsx +++ b/src/app/browse/page.tsx @@ -84,7 +84,7 @@ export default function BrowsePage() { { text: "Back to Home", href: "/" }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/modern-office-desk-composition-with-technological-device_23-2147915841.jpg" + imageSrc="http://img.b2bpic.net/free-photo/modern-office-desk-composition-with-technological-device_23-2147915841.jpg?_wi=1" imageAlt="Browse Categories" mediaAnimation="blur-reveal" background="radial-gradient" @@ -105,7 +105,7 @@ export default function BrowsePage() { name: "Electronics & Gadgets", price: "From $50", variant: "1,245 listings", - imageSrc: "http://img.b2bpic.net/free-photo/modern-office-desk-composition-with-technological-device_23-2147915841.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/modern-office-desk-composition-with-technological-device_23-2147915841.jpg?_wi=2", imageAlt: "Electronics Category", isFavorited: false, }, @@ -114,7 +114,7 @@ export default function BrowsePage() { name: "Vehicles", price: "From $500", variant: "892 listings", - imageSrc: "http://img.b2bpic.net/free-photo/stylish-elegant-couple-car-salon_1157-22680.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/stylish-elegant-couple-car-salon_1157-22680.jpg?_wi=1", imageAlt: "Vehicles Category", isFavorited: false, }, -- 2.49.1 From a1c091f4a5dbbb792382b4f6c9effd12700f94b7 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 16:48:57 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..623d0e8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_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 { Nunito_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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ClassifiedHub - Buy & Sell Online Classifieds", + description: "Post free classified ads and browse millions of items. Safe, secure marketplace for buying and selling anything online.", + keywords: "classifieds, buy sell online, marketplace, classified ads, free listings", + metadataBase: new URL("https://classifiedhub.com"), + alternates: { + canonical: "https://classifiedhub.com", + }, + openGraph: { + title: "ClassifiedHub - Buy & Sell Online", + description: "Secure marketplace for classified ads. Connect with buyers and sellers worldwide.", + siteName: "ClassifiedHub", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/flat-design-web-pop-up-collection_23-2149119270.jpg", + alt: "ClassifiedHub Marketplace", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ClassifiedHub - Buy & Sell Online", + description: "Secure classified ads marketplace", + images: ["http://img.b2bpic.net/free-vector/flat-design-web-pop-up-collection_23-2149119270.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}