Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-12 06:12:33 +00:00

View File

@@ -8,7 +8,7 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import TextAbout from '@/components/sections/about/TextAbout';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Bell, Bookmark, Camera, Heart, Lock, MapPin, MessageCircle, MoreHorizontal, Pizza, Settings, Sparkles, Star, TrendingUp, Users, Utensils, Wine, Zap, Flame } from 'lucide-react';
import { Bell, Bookmark, Camera, Heart, Lock, MapPin, MessageCircle, MoreHorizontal, Pizza, Settings, Sparkles, Star, TrendingUp, Users, Utensils, Wine, Zap, Flame, Download, Share2, Globe, Zap as ZapIcon } from 'lucide-react';
export default function LandingPage() {
return (
@@ -148,8 +148,8 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
title="What FoodSwipe Users Are Saying"
description="Join thousands of food lovers who've discovered their new favorite meals."
tag="Reviews"
description="Real users sharing their genuine FoodSwipe experiences. From busy professionals to food explorers, discover how FoodSwipe is changing the way people eat."
tag="User Reviews"
tagIcon={Star}
tagAnimation="slide-up"
testimonials={[
@@ -187,9 +187,9 @@ export default function LandingPage() {
<div id="pricing" data-section="pricing">
<PricingCardThree
title="Simple, Transparent Pricing"
description="Choose the plan that works best for your food discovery journey."
tag="Pricing"
title="Choose Your Swiping Plan"
description="Unlock unlimited food discovery with the perfect plan for your appetite. From casual swipers to food enthusiasts, we have a plan for everyone."
tag="Flexible Pricing"
tagIcon={Zap}
tagAnimation="slide-up"
animationType="slide-up"
@@ -198,16 +198,16 @@ export default function LandingPage() {
plans={[
{
id: "starter", price: "Free", name: "Starter", buttons: [{ text: "Get Started", href: "https://app.foodswipe.com/signup" }],
features: ["Unlimited swiping", "Save up to 50 favorites", "Basic recommendations", "Community reviews access"]
features: ["Unlimited swiping", "Save up to 50 favorites", "Basic recommendations", "Community reviews access", "Access to partner restaurants"]
},
{
id: "pro", badge: "Most Popular", badgeIcon: Sparkles,
price: "$9.99/mo", name: "Pro", buttons: [{ text: "Start Free Trial", href: "https://app.foodswipe.com/pro-trial" }],
features: ["Everything in Starter, plus:", "Unlimited favorites", "Advanced AI recommendations", "Dietary filter customization", "Restaurant alerts & reservations", "Priority support"]
features: ["Everything in Starter, plus:", "Unlimited favorites", "Advanced AI recommendations", "Dietary filter customization", "Restaurant alerts & reservations", "Priority support", "Exclusive early access to new features"]
},
{
id: "premium", price: "$19.99/mo", name: "Premium", buttons: [{ text: "Start Free Trial", href: "https://app.foodswipe.com/premium-trial" }],
features: ["Everything in Pro, plus:", "VIP restaurant access", "Exclusive pre-release dishes", "Personal food concierge", "Group swiping sessions", "Ad-free experience"]
features: ["Everything in Pro, plus:", "VIP restaurant access", "Exclusive pre-release dishes", "Personal food concierge", "Group swiping sessions", "Ad-free experience", "Early access to Brussels launch events"]
}
]}
/>
@@ -215,13 +215,13 @@ export default function LandingPage() {
<div id="cta" data-section="cta">
<TextAbout
tag="Ready?"
tagIcon={Utensils}
tag="Ready to Discover?"
tagIcon={Flame}
tagAnimation="slide-up"
title="Start Swiping for Your Next Favorite Meal Today"
title="Join FoodSwipe Today Download the App Now"
buttons={[
{ text: "Download App", href: "https://app.foodswipe.com" },
{ text: "Learn More", href: "#" }
{ text: "Download on iOS", href: "https://app.foodswipe.com/ios" },
{ text: "Download on Android", href: "https://app.foodswipe.com/android" }
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
@@ -237,15 +237,15 @@ export default function LandingPage() {
{ label: "Features", href: "#features" },
{ label: "How It Works", href: "#how-it-works" },
{ label: "Pricing", href: "#pricing" },
{ label: "Download", href: "https://app.foodswipe.com" }
{ label: "Download App", href: "https://app.foodswipe.com" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Brussels Launch", href: "/brussels-launch" },
{ label: "Blog", href: "/blog" },
{ label: "Careers", href: "/careers" },
{ label: "Press", href: "/press" }
{ label: "Press Kit", href: "/press" }
]
},
{
@@ -265,9 +265,9 @@ export default function LandingPage() {
]
}
]}
copyrightText="© 2025 FoodSwipe. All rights reserved."
copyrightText="© 2025 FoodSwipe. All rights reserved. Now available in Brussels and expanding globally."
/>
</div>
</ThemeProvider>
);
}
}