Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${figtree.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +66,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -94,7 +94,7 @@ export default function HomePage() {
|
||||
handle: "Fashion Enthusiast",
|
||||
testimonial: "The best place to find authentic designer pieces. Love the curated selection!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-confident-adult-woman-posing_23-2148461438.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-confident-adult-woman-posing_23-2148461438.jpg?_wi=1",
|
||||
imageAlt: "Sarah Johnson",
|
||||
},
|
||||
{
|
||||
@@ -102,7 +102,7 @@ export default function HomePage() {
|
||||
handle: "Style Curator",
|
||||
testimonial: "Finally, all my favorite brands in one marketplace. Shopping is a breeze!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=1",
|
||||
imageAlt: "Michael Chen",
|
||||
},
|
||||
{
|
||||
@@ -110,7 +110,7 @@ export default function HomePage() {
|
||||
handle: "Fashion Blogger",
|
||||
testimonial: "ThreadHub has become my go-to for discovering new designers. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/headshot-stylish-hipster-guy-with-bushy-hairstyle-stubble-shining-eyes-poses_273609-8521.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/headshot-stylish-hipster-guy-with-bushy-hairstyle-stubble-shining-eyes-poses_273609-8521.jpg?_wi=1",
|
||||
imageAlt: "Emily Rodriguez",
|
||||
},
|
||||
]}
|
||||
@@ -189,7 +189,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Gucci Premium Cotton T-Shirt",
|
||||
},
|
||||
{
|
||||
@@ -199,7 +199,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Prada Designer Blue Jeans",
|
||||
},
|
||||
{
|
||||
@@ -209,7 +209,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Calvin Klein Leather Jacket Classic",
|
||||
},
|
||||
{
|
||||
@@ -219,7 +219,7 @@ export default function HomePage() {
|
||||
price: "$95.00",
|
||||
rating: 4,
|
||||
reviewCount: "512",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-young-beautiful-women-friends-together-isolated-yellow-black-yellow-dress-hat-stylish-boho-having-fun_285396-10290.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-young-beautiful-women-friends-together-isolated-yellow-black-yellow-dress-hat-stylish-boho-having-fun_285396-10290.jpg?_wi=1",
|
||||
imageAlt: "Zara Summer Elegant Dress",
|
||||
},
|
||||
]}
|
||||
@@ -274,21 +274,21 @@ export default function HomePage() {
|
||||
id: 1,
|
||||
title: "Expert Curation",
|
||||
description: "Handpicked selection of premium brands ensuring quality and authenticity in every piece",
|
||||
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=1",
|
||||
imageAlt: "Expert Curation",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Sustainable Fashion",
|
||||
description: "Committed to eco-friendly practices and supporting ethical fashion brands worldwide",
|
||||
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=1",
|
||||
imageAlt: "Sustainable Fashion",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Fast Delivery",
|
||||
description: "Quick shipping with reliable logistics partners to get your items to you in time",
|
||||
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=1",
|
||||
imageAlt: "Fast Delivery",
|
||||
},
|
||||
]}
|
||||
@@ -318,7 +318,7 @@ export default function HomePage() {
|
||||
quote: "ThreadHub made it so easy to explore different brands and find pieces that truly represent my personal style. The quality is exceptional!",
|
||||
name: "Jessica Taylor",
|
||||
role: "Fashion Designer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-confident-adult-woman-posing_23-2148461438.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-confident-adult-woman-posing_23-2148461438.jpg?_wi=2",
|
||||
imageAlt: "Jessica Taylor",
|
||||
},
|
||||
{
|
||||
@@ -327,7 +327,7 @@ export default function HomePage() {
|
||||
quote: "I was skeptical about buying designer pieces online, but ThreadHub's authenticity guarantee gave me confidence. Absolutely worth it!",
|
||||
name: "David Park",
|
||||
role: "CEO, Tech Startup",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=2",
|
||||
imageAlt: "David Park",
|
||||
},
|
||||
{
|
||||
@@ -336,7 +336,7 @@ export default function HomePage() {
|
||||
quote: "The curation is impeccable. Every time I visit, I find new brands I love. This is now my go-to for all luxury fashion needs.",
|
||||
name: "Alexandra Moore",
|
||||
role: "Marketing Executive",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/headshot-stylish-hipster-guy-with-bushy-hairstyle-stubble-shining-eyes-poses_273609-8521.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/headshot-stylish-hipster-guy-with-bushy-hairstyle-stubble-shining-eyes-poses_273609-8521.jpg?_wi=2",
|
||||
imageAlt: "Alexandra Moore",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -91,7 +91,7 @@ export default function ShopPage() {
|
||||
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=3",
|
||||
imageAlt: "Gucci Premium Cotton T-Shirt",
|
||||
},
|
||||
{
|
||||
@@ -101,7 +101,7 @@ export default function ShopPage() {
|
||||
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=3",
|
||||
imageAlt: "Prada Designer Blue Jeans",
|
||||
},
|
||||
{
|
||||
@@ -111,7 +111,7 @@ export default function ShopPage() {
|
||||
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=3",
|
||||
imageAlt: "Calvin Klein Leather Jacket Classic",
|
||||
},
|
||||
{
|
||||
@@ -121,7 +121,7 @@ export default function ShopPage() {
|
||||
price: "$95.00",
|
||||
rating: 4,
|
||||
reviewCount: "512",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-young-beautiful-women-friends-together-isolated-yellow-black-yellow-dress-hat-stylish-boho-having-fun_285396-10290.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-young-beautiful-women-friends-together-isolated-yellow-black-yellow-dress-hat-stylish-boho-having-fun_285396-10290.jpg?_wi=2",
|
||||
imageAlt: "Zara Summer Elegant Dress",
|
||||
},
|
||||
{
|
||||
@@ -131,7 +131,7 @@ export default function ShopPage() {
|
||||
price: "$120.00",
|
||||
rating: 5,
|
||||
reviewCount: "289",
|
||||
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=4",
|
||||
imageAlt: "Tommy Hilfiger Classic Oxford Shirt",
|
||||
},
|
||||
{
|
||||
@@ -141,7 +141,7 @@ export default function ShopPage() {
|
||||
price: "$180.00",
|
||||
rating: 5,
|
||||
reviewCount: "673",
|
||||
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=4",
|
||||
imageAlt: "Nike Performance Running Shoes",
|
||||
},
|
||||
]}
|
||||
@@ -169,21 +169,21 @@ export default function ShopPage() {
|
||||
id: 1,
|
||||
title: "Curated Selection",
|
||||
description: "Every product is handpicked by our fashion experts to ensure premium quality and authentic luxury pieces",
|
||||
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=2",
|
||||
imageAlt: "Curated Selection",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Secure Checkout",
|
||||
description: "Shop with confidence using our secure payment system and authentic product guarantee on all items",
|
||||
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=2",
|
||||
imageAlt: "Secure Checkout",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Easy Returns",
|
||||
description: "30-day hassle-free returns policy ensures you shop with complete peace of mind and satisfaction",
|
||||
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=2",
|
||||
imageAlt: "Easy Returns",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user