6 Commits

Author SHA1 Message Date
7e5cba1ef8 Update src/app/page.tsx 2026-03-03 14:15:35 +00:00
774f1cf63a Update src/app/page.tsx 2026-03-03 14:13:10 +00:00
9b62fb28e9 Update src/app/layout.tsx 2026-03-03 14:13:10 +00:00
57a6814abc Merge version_1 into main
Merge version_1 into main
2026-03-03 14:06:55 +00:00
55ccc412a2 Merge version_1 into main
Merge version_1 into main
2026-03-03 14:06:07 +00:00
1d09c76049 Merge version_1 into main
Merge version_1 into main
2026-03-03 14:03:24 +00:00
2 changed files with 7 additions and 8 deletions

View File

@@ -1418,4 +1418,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -46,7 +46,7 @@ export default function LandingPage() {
<HeroLogoBillboardSplit
logoText="MarketFinder"
description="Discover premium products from verified sellers. Your trusted marketplace for quality goods and seamless transactions."
background={{ variant: "circleGradient" }}
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Browse Products", href: "#products" },
{ text: "Sell With Us", href: "#contact" }
@@ -64,16 +64,16 @@ export default function LandingPage() {
<ProductCardFour
products={[
{
id: "1", name: "Premium Leather Wallet", price: "$49.99", variant: "Black • 3 Variants", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-storage-devices-bed_23-2149319354.jpg", imageAlt: "Black leather wallet", isFavorited: false
id: "1", name: "Premium Leather Wallet", price: "$49.99", variant: "⭐ 4.9 from Verified Seller • Black • 3 Variants", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-storage-devices-bed_23-2149319354.jpg", imageAlt: "Black leather wallet", isFavorited: false
},
{
id: "2", name: "Wireless Earbuds Pro", price: "$129.99", variant: "White • 2 Variants", imageSrc: "http://img.b2bpic.net/free-photo/container-with-true-wireless-earphones_657883-209.jpg", imageAlt: "Wireless earbuds", isFavorited: false
id: "2", name: "Wireless Earbuds Pro", price: "$129.99", variant: "⭐ 4.8 from Verified Seller • White • 2 Variants", imageSrc: "http://img.b2bpic.net/free-photo/container-with-true-wireless-earphones_657883-209.jpg", imageAlt: "Wireless earbuds", isFavorited: false
},
{
id: "3", name: "Smart Watch Series 5", price: "$299.99", variant: "Silver • 4 Variants", imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-man-checking-his-smartwatch_23-2148228521.jpg", imageAlt: "Smart watch device", isFavorited: false
id: "3", name: "Smart Watch Series 5", price: "$299.99", variant: "⭐ 4.7 from Verified Seller • Silver • 4 Variants", imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-man-checking-his-smartwatch_23-2148228521.jpg", imageAlt: "Smart watch device", isFavorited: false
},
{
id: "4", name: "Portable Phone Charger", price: "$34.99", variant: "Blue • 5 Variants", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-blue-cellphone-headphones-laptop-origami-wooden-surface_181624-60489.jpg", imageAlt: "Portable charger", isFavorited: false
id: "4", name: "Portable Phone Charger", price: "$34.99", variant: "⭐ 4.9 from Verified Seller • Blue • 5 Variants", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-blue-cellphone-headphones-laptop-origami-wooden-surface_181624-60489.jpg", imageAlt: "Portable charger", isFavorited: false
}
]}
title="Featured Products"
@@ -143,7 +143,6 @@ export default function LandingPage() {
]}
speed={40}
showCard={true}
animationType="slide-up"
/>
</div>
@@ -206,4 +205,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}