Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-03-03 13:58:54 +00:00

View File

@@ -10,7 +10,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Award, Globe, Lightbulb, MapPin, Sparkles, Star, ThumbsUp, Zap } from 'lucide-react';
import { Award, Globe, Lightbulb, MapPin, Sparkles, Star, ThumbsUp, Zap, Crown } from 'lucide-react';
export default function LandingPage() {
return (
@@ -46,7 +46,7 @@ export default function LandingPage() {
tag="Nike Store"
tagIcon={Zap}
tagAnimation="slide-up"
background={{ variant: "grid" }}
background={{ variant: "animated-grid" }}
buttons={[
{ text: "Shop Now", href: "#products" },
{ text: "Learn More", href: "#features" }
@@ -73,16 +73,16 @@ export default function LandingPage() {
tagAnimation="slide-up"
products={[
{
id: "1", name: "Nike Air Max Elite", price: "$149.99", imageSrc: "http://img.b2bpic.net/free-photo/fashion-shoes-sneakers_1203-7529.jpg?_wi=1", imageAlt: "Nike Air Max Elite shoes", initialQuantity: 1
id: "1", name: "Nike Air Max Elite", price: "$149.99", imageSrc: "http://img.b2bpic.net/free-photo/fashion-shoes-sneakers_1203-7529.jpg", imageAlt: "Nike Air Max Elite shoes", initialQuantity: 1
},
{
id: "2", name: "Nike Pegasus Running", price: "$129.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-female-feet-yellow-sneakers-stadium_651396-379.jpg?_wi=1", imageAlt: "Nike Pegasus running shoes", initialQuantity: 1
id: "2", name: "Nike Pegasus Running", price: "$129.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-female-feet-yellow-sneakers-stadium_651396-379.jpg", imageAlt: "Nike Pegasus running shoes", initialQuantity: 1
},
{
id: "3", name: "Nike LeBron Basketball", price: "$159.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-sneakers-basketball-court_23-2147925193.jpg?_wi=1", imageAlt: "Nike LeBron basketball shoes", initialQuantity: 1
id: "3", name: "Nike LeBron Basketball", price: "$159.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-sneakers-basketball-court_23-2147925193.jpg", imageAlt: "Nike LeBron basketball shoes", initialQuantity: 1
},
{
id: "4", name: "Nike Training Pro", price: "$139.99", imageSrc: "http://img.b2bpic.net/free-photo/low-section-unrecognizable-woman-activewear-sitting-gym-floor-tying-laces-preparing-workout_1098-18862.jpg?_wi=1", imageAlt: "Nike Training Pro shoes", initialQuantity: 1
id: "4", name: "Nike Training Pro", price: "$139.99", imageSrc: "http://img.b2bpic.net/free-photo/low-section-unrecognizable-woman-activewear-sitting-gym-floor-tying-laces-preparing-workout_1098-18862.jpg", imageAlt: "Nike Training Pro shoes", initialQuantity: 1
}
]}
gridVariant="bento-grid"
@@ -102,19 +102,19 @@ export default function LandingPage() {
features={[
{
id: 1,
title: "Advanced Cushioning Technology", description: "Experience superior comfort with our proprietary cushioning systems that adapt to your movement patterns for all-day wear.", imageSrc: "http://img.b2bpic.net/free-photo/fashion-shoes-sneakers_1203-7529.jpg?_wi=2", imageAlt: "Advanced cushioning technology"
title: "Advanced Cushioning Technology", description: "Experience superior comfort with our proprietary cushioning systems that adapt to your movement patterns for all-day wear.", imageSrc: "http://img.b2bpic.net/free-photo/fashion-shoes-sneakers_1203-7529.jpg", imageAlt: "Advanced cushioning technology"
},
{
id: 2,
title: "Breathable Materials", description: "Premium breathable fabrics keep your feet cool and dry during intense workouts and daily activities.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-female-feet-yellow-sneakers-stadium_651396-379.jpg?_wi=2", imageAlt: "Breathable materials showcase"
title: "Breathable Materials", description: "Premium breathable fabrics keep your feet cool and dry during intense workouts and daily activities.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-female-feet-yellow-sneakers-stadium_651396-379.jpg", imageAlt: "Breathable materials showcase"
},
{
id: 3,
title: "Sustainable Manufacturing", description: "We're committed to eco-friendly production methods that reduce environmental impact without compromising quality.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-sneakers-basketball-court_23-2147925193.jpg?_wi=2", imageAlt: "Sustainable manufacturing process"
title: "Sustainable Manufacturing", description: "We're committed to eco-friendly production methods that reduce environmental impact without compromising quality.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-sneakers-basketball-court_23-2147925193.jpg", imageAlt: "Sustainable manufacturing process"
},
{
id: 4,
title: "Expert Craftsmanship", description: "Each product is meticulously crafted by master artisans with decades of experience in footwear design.", imageSrc: "http://img.b2bpic.net/free-photo/low-section-unrecognizable-woman-activewear-sitting-gym-floor-tying-laces-preparing-workout_1098-18862.jpg?_wi=2", imageAlt: "Expert craftsmanship details"
title: "Expert Craftsmanship", description: "Each product is meticulously crafted by master artisans with decades of experience in footwear design.", imageSrc: "http://img.b2bpic.net/free-photo/low-section-unrecognizable-woman-activewear-sitting-gym-floor-tying-laces-preparing-workout_1098-18862.jpg", imageAlt: "Expert craftsmanship details"
}
]}
animationType="blur-reveal"
@@ -204,7 +204,7 @@ export default function LandingPage() {
]
},
{
id: "pro", badge: "Most Popular", badgeIcon: Award,
id: "pro", badge: "Most Popular", badgeIcon: Crown,
price: "$49/year", subtitle: "Enhanced shopping experience", features: [
"Early access to new releases", "10% discount on all purchases", "Free shipping on orders", "Exclusive member events", "Priority customer support"
]
@@ -233,7 +233,7 @@ export default function LandingPage() {
{ text: "Get Started", href: "#products" },
{ text: "Contact Us", href: "#" }
]}
background={{ variant: "grid" }}
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
/>
</div>