3 Commits

Author SHA1 Message Date
e59e1bcebc Update src/app/page.tsx 2026-04-16 14:48:25 +00:00
e34076f267 Merge version_3 into main
Merge version_3 into main
2026-04-16 14:47:14 +00:00
4d1aa71fab Update src/app/page.tsx 2026-04-16 14:47:11 +00:00

View File

@@ -62,7 +62,7 @@ export default function LandingPage() {
{
src: "http://img.b2bpic.net/free-photo/cute-child-his-father-s-shoulders-park_23-2147636985.jpg", alt: "friendly dad portrait garden"},
{
src: "http://img.b2bpic.net/free-photo/young-businessman-going-work-with-coffee_158595-4703.jpg", alt: "confident man portrait city"},
src: "http://img.b2bpic.net/young-businessman-going-work-with-coffee_158595-4703.jpg", alt: "confident man portrait city"},
]}
buttons={[
{
@@ -127,19 +127,22 @@ export default function LandingPage() {
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
buttons={[
{ text: "Buy Now", href: "#" }
]}
products={[
{
id: "p1", name: "Precision Multitool (Bestseller)", price: "$45.00", variant: "Black/Silver", imageSrc: "http://img.b2bpic.net/free-photo/male-devices-near-accessories_23-2148067670.jpg"},
id: "p1", name: "Precision Multitool", price: "$45.00", variant: "Black/Silver", imageSrc: "http://img.b2bpic.net/free-photo/male-devices-near-accessories_23-2148067670.jpg"},
{
id: "p2", name: "Rugged Smartwatch", price: "$129.00", variant: "Midnight", imageSrc: "http://img.b2bpic.net/free-photo/close-up-female-hands-wearing-wrist-watch_171337-11789.jpg"},
{
id: "p3", name: "Commuter Backpack (Limited Stock)", price: "$85.00", variant: "Grey", imageSrc: "http://img.b2bpic.net/free-photo/young-hipster-man-traveling-with-backpack-autumn-forest-wearing-warm-jacket-hat-active-tourist-exploring-nature-cold-season_285396-1541.jpg"},
id: "p3", name: "Commuter Backpack", price: "$85.00", variant: "Grey", imageSrc: "http://img.b2bpic.net/free-photo/young-hipster-man-traveling-with-backpack-autumn-forest-wearing-warm-jacket-hat-active-tourist-exploring-nature-cold-season_285396-1541.jpg"},
{
id: "p4", name: "Rapid Power Bank", price: "$39.00", variant: "Blue", imageSrc: "http://img.b2bpic.net/free-photo/usb-type-c-port-warm-neon-scene-tech-macro_169016-71583.jpg"},
{
id: "p5", name: "Auto Toolkit (Bestseller)", price: "$150.00", variant: "Pro Kit", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-cleaning-surfboard_23-2148926869.jpg"},
id: "p5", name: "Auto Toolkit", price: "$150.00", variant: "Pro Kit", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-cleaning-surfboard_23-2148926869.jpg"},
{
id: "p6", name: "Portable Speaker (Limited Stock)", price: "$60.00", variant: "Outdoor", imageSrc: "http://img.b2bpic.net/free-photo/composition-smart-speaker-table_23-2149036844.jpg"},
id: "p6", name: "Portable Speaker", price: "$60.00", variant: "Outdoor", imageSrc: "http://img.b2bpic.net/free-photo/composition-smart-speaker-table_23-2149036844.jpg"},
]}
title="Trending Now"
description="Our top-rated gadgets and tools for dads on the go."
@@ -171,19 +174,19 @@ export default function LandingPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Mark R.", role: "Dad of 3", company: "Verified Buyer", rating: 5,
id: "1", name: "Mark R. (Dad of 3)", role: "Gone from disorganized to streamlined.", company: "Verified Buyer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-young-man-black-jacket_23-2147955449.jpg"},
{
id: "2", name: "Dave L.", role: "Weekend Hobbyist", company: "Pro Reviewer", rating: 5,
id: "2", name: "Dave L. (Weekend Hobbyist)", role: "Saved hours on DIY prep with the right tools.", company: "Pro Reviewer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/bearded-smiling-father-outdoors-with-his-little-son_171337-17018.jpg"},
{
id: "3", name: "Sam K.", role: "Outdoorsman", company: "Loyal Customer", rating: 5,
id: "3", name: "Sam K. (Outdoorsman)", role: "Gear survived a week-long trek without a hitch.", company: "Loyal Customer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1702.jpg"},
{
id: "4", name: "Paul M.", role: "Tech Dad", company: "Verified Buyer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/father-daughter-having-fun-park_23-2148201602.jpg"},
id: "4", name: "Paul M. (Tech Dad)", role: "Finally found a power bank that actually lasts.", company: "Verified Buyer", rating: 5,
imageSrc: "http://img.b2bpic.net/father-daughter-having-fun-park_23-2148201602.jpg"},
{
id: "5", name: "John D.", role: "DIYer", company: "Verified Buyer", rating: 5,
id: "5", name: "John D. (DIYer)", role: "From messy shed to organized perfection.", company: "Verified Buyer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-going-work-with-coffee_158595-4703.jpg"},
]}
title="Hear from our Dads"
@@ -233,4 +236,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}