diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 7a95566..5fed8fd 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -114,21 +114,21 @@ export default function AboutPage() { id: 1, title: "Authenticity First", description: "We guarantee 100% authentic designer products. Every item undergoes rigorous quality verification to ensure genuine luxury", - imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-standing-counter-desk-discussing-shirt-material-before-buying-it-clothing-store-stylish-client-shopping-formal-wear-purchasing-new-fashion-collection-boutique_482257-65520.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-standing-counter-desk-discussing-shirt-material-before-buying-it-clothing-store-stylish-client-shopping-formal-wear-purchasing-new-fashion-collection-boutique_482257-65520.jpg?_wi=3", imageAlt: "Authenticity First", }, { id: 2, title: "Sustainability", description: "We champion eco-conscious fashion by partnering with brands committed to sustainable practices and ethical production", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-green-buttons-with-sewing-machine-shuttles_23-2148527940.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-green-buttons-with-sewing-machine-shuttles_23-2148527940.jpg?_wi=3", imageAlt: "Sustainability", }, { id: 3, title: "Community Focus", description: "We believe fashion should bring people together. ThreadHub is more than a marketplace—it's a community of style enthusiasts", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-delivery-man-with-packagaes_23-2148684703.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/front-view-delivery-man-with-packagaes_23-2148684703.jpg?_wi=3", imageAlt: "Community Focus", }, ]} diff --git a/src/app/brands/page.tsx b/src/app/brands/page.tsx index 4226f6b..85ddb1a 100644 --- a/src/app/brands/page.tsx +++ b/src/app/brands/page.tsx @@ -110,7 +110,7 @@ export default function BrandsPage() { price: "$450.00", rating: 5, reviewCount: "328", - imageSrc: "http://img.b2bpic.net/free-photo/still-life-spring-wardrobe-switch_23-2150478962.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/still-life-spring-wardrobe-switch_23-2150478962.jpg?_wi=2", imageAlt: "Gucci Premium Cotton T-Shirt", }, { @@ -120,7 +120,7 @@ export default function BrandsPage() { price: "$850.00", rating: 5, reviewCount: "245", - imageSrc: "http://img.b2bpic.net/free-photo/bunch-jeans-wooden-background-strewn-jeans-close-up-fashionable-clothes_169016-4540.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/bunch-jeans-wooden-background-strewn-jeans-close-up-fashionable-clothes_169016-4540.jpg?_wi=2", imageAlt: "Prada Designer Blue Jeans", }, { @@ -130,7 +130,7 @@ export default function BrandsPage() { price: "$1,200.00", rating: 5, reviewCount: "156", - imageSrc: "http://img.b2bpic.net/free-photo/woman-model-demonstrating-winter-cloths_1303-16987.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/woman-model-demonstrating-winter-cloths_1303-16987.jpg?_wi=2", imageAlt: "Calvin Klein Leather Jacket Classic", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..62c6df4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,49 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ThreadHub - Premium Fashion Brands Marketplace", + description: "Shop luxury and designer clothing from the world's top fashion brands. Curated selection of premium apparel with fast shipping and authentic guarantees.", + keywords: "fashion marketplace, designer brands, luxury clothing, premium apparel, fashion shopping", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "ThreadHub - Discover Premium Fashion Brands", + description: "Your destination for curated luxury fashion. Shop from Gucci, Prada, Zara, and more.", + type: "website", + siteName: "ThreadHub", + }, + twitter: { + card: "summary_large_image", + title: "ThreadHub - Premium Fashion Marketplace", + description: "Shop luxury clothing brands curated just for you", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +52,9 @@ export default function RootLayout({ return ( - + {children}