Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-13 02:27:57 +00:00

View File

@@ -30,25 +30,15 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Shop",
id: "/shop",
},
name: "Shop", id: "/shop"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "FAQ",
id: "/faq",
},
name: "FAQ", id: "/faq"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Dropfinder"
/>
@@ -60,13 +50,9 @@ export default function LandingPage() {
description="Discover the latest trending products and unbeatable deals across all your favorite niches. Your ultimate discovery destination starts here."
buttons={[
{
text: "Shop Now",
href: "/shop",
},
text: "Shop Now", href: "/shop"},
{
text: "Find Your Deal",
href: "/shop",
},
text: "Find Your Deal", href: "/shop"},
]}
imageSrc="http://img.b2bpic.net/free-photo/coffee-cup_1203-6706.jpg"
imageAlt="ecommerce product photography clean"
@@ -81,41 +67,17 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "1",
name: "Wireless Audio Pro",
price: "$129.99",
imageSrc: "http://img.b2bpic.net/free-photo/minimal-tech-setup-with-earbuds_58702-17226.jpg",
},
id: "1", name: "Wireless Audio Pro", price: "$129.99", imageSrc: "http://img.b2bpic.net/free-photo/minimal-tech-setup-with-earbuds_58702-17226.jpg"},
{
id: "2",
name: "Artisan Ceramic Vase",
price: "$45.00",
imageSrc: "http://img.b2bpic.net/free-photo/cozy-autumn-composition-with-decorative-details-candles_169016-23146.jpg",
},
id: "2", name: "Artisan Ceramic Vase", price: "$45.00", imageSrc: "http://img.b2bpic.net/free-photo/cozy-autumn-composition-with-decorative-details-candles_169016-23146.jpg"},
{
id: "3",
name: "Classic Chronograph Watch",
price: "$189.00",
imageSrc: "http://img.b2bpic.net/free-photo/accessories-skincare-products_23-2147710691.jpg",
},
id: "3", name: "Classic Chronograph Watch", price: "$189.00", imageSrc: "http://img.b2bpic.net/free-photo/accessories-skincare-products_23-2147710691.jpg"},
{
id: "4",
name: "Pet Grooming Hub",
price: "$59.99",
imageSrc: "http://img.b2bpic.net/free-photo/pet-accessories-still-life-concept-with-grooming-objects-food_23-2148949582.jpg",
},
id: "4", name: "Pet Grooming Hub", price: "$59.99", imageSrc: "http://img.b2bpic.net/free-photo/pet-accessories-still-life-concept-with-grooming-objects-food_23-2148949582.jpg"},
{
id: "5",
name: "Leather Nomad Backpack",
price: "$95.00",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-traveling-essentials-collection_23-2149185292.jpg",
},
id: "5", name: "Leather Nomad Backpack", price: "$95.00", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-traveling-essentials-collection_23-2149185292.jpg"},
{
id: "6",
name: "ErgoSmart Desk Lamp",
price: "$79.00",
imageSrc: "http://img.b2bpic.net/free-photo/view-contemporary-photorealistic-lamp_23-2151038913.jpg",
},
id: "6", name: "ErgoSmart Desk Lamp", price: "$79.00", imageSrc: "http://img.b2bpic.net/free-photo/view-contemporary-photorealistic-lamp_23-2151038913.jpg"},
]}
title="Trending Bestsellers"
description="Products everyone is talking about this week."
@@ -129,30 +91,24 @@ export default function LandingPage() {
metrics={[
{
icon: Truck,
label: "Fast Delivery",
value: "24-48h",
},
label: "Fast Delivery", value: "24-48h"},
{
icon: ShieldCheck,
label: "Secure Checkout",
value: "100%",
},
label: "Secure Checkout", value: "100%"},
{
icon: RotateCcw,
label: "Easy Returns",
value: "30 Days",
},
label: "Easy Returns", value: "30 Days"},
]}
metricsAnimation="slide-up"
/>
</div>
<div id="ecommerce" data-section="ecommerce">
<ProductCartItem />
<ProductCartItem item={{ id: "default", name: "Sample Item", price: "0.00" }} />
</div>
<div id="legal" data-section="legal">
<LegalSection />
<LegalSection layout="footer" title="Legal Information" sections={[]} />
</div>
<div id="footer" data-section="footer">
@@ -161,37 +117,25 @@ export default function LandingPage() {
{
items: [
{
label: "Shop All",
href: "/shop",
},
label: "Shop All", href: "/shop"},
{
label: "New Arrivals",
href: "/shop",
},
label: "New Arrivals", href: "/shop"},
],
},
{
items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "FAQ",
href: "/faq",
},
label: "FAQ", href: "/faq"},
],
},
{
items: [
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
{
label: "Returns",
href: "#",
},
label: "Returns", href: "#"},
],
},
]}