2 Commits

Author SHA1 Message Date
b89a471d05 Update src/app/page.tsx 2026-02-23 11:01:45 +00:00
b7863f5b8d Merge version_2 into main
Merge version_2 into main
2026-02-23 10:29:42 +00:00

View File

@@ -5,12 +5,12 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import AboutMetric from '@/components/sections/about/AboutMetric'; import AboutMetric from '@/components/sections/about/AboutMetric';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { MapPin, Shirt, Users } from 'lucide-react'; import { MapPin, Shirt, Users, Sparkles } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -89,7 +89,7 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="pricing" data-section="pricing"> <div id="pricing" data-section="pricing">
<PricingCardNine <PricingCardOne
title='Unlock Your Style' title='Unlock Your Style'
description='Choose the perfect plan that fits your urban fashion aspirations and budget.' description='Choose the perfect plan that fits your urban fashion aspirations and budget.'
animationType='slide-up' animationType='slide-up'
@@ -98,33 +98,25 @@ export default function LandingPage() {
plans={[ plans={[
{ {
id: 'starter', id: 'starter',
title: 'Starter Kit', badge: 'Starter Kit',
price: '$29', price: '$29/month',
period: '/month', subtitle: 'Perfect for casual enthusiasts',
imageSrc: 'https://img.b2bpic.net/free-photo/man-city-street-style_23-2148719812.jpg',
imageAlt: 'Man in casual urban outfit',
features: ['Basic access to new drops', 'Weekly style insights', 'Community forum access'], features: ['Basic access to new drops', 'Weekly style insights', 'Community forum access'],
button: {text: 'Get Started', href: '#contact'}
}, },
{ {
id: 'urban-explorer', id: 'urban-explorer',
title: 'Urban Explorer', badge: 'Urban Explorer',
price: '$59', badgeIcon: Sparkles,
period: '/month', price: '$59/month',
imageSrc: 'https://img.b2bpic.net/free-photo/young-african-american-man-hat-street-style-fashion_1321-2940.jpg', subtitle: 'Ideal for evolving wardrobes',
imageAlt: 'Man in trendy urban clothes',
features: ['All Starter Kit features', 'Early access to exclusive drops', 'Personalized style recommendations', 'Priority customer support'], features: ['All Starter Kit features', 'Early access to exclusive drops', 'Personalized style recommendations', 'Priority customer support'],
button: {text: 'Choose Plan', href: '#contact'}
}, },
{ {
id: 'streetwear-pro', id: 'streetwear-pro',
title: 'Streetwear Pro', badge: 'Streetwear Pro',
price: '$99', price: '$99/month',
period: '/month', subtitle: 'For the ultimate trendsetter',
imageSrc: 'https://img.b2bpic.net/free-photo/guy-urban-clothing-street_23-2148270501.jpg',
imageAlt: 'Man posing in streetwear',
features: ['All Urban Explorer features', 'VIP access to limited editions', 'Dedicated style consultant', 'Free express shipping on all orders', 'Exclusive member events'], features: ['All Urban Explorer features', 'VIP access to limited editions', 'Dedicated style consultant', 'Free express shipping on all orders', 'Exclusive member events'],
button: {text: 'Go Pro', href: '#contact'}
} }
]} ]}
/> />