Merge version_2 into main #1

Merged
bender merged 1 commits from version_2 into main 2026-03-19 23:42:34 +00:00

View File

@@ -6,7 +6,7 @@ import HeroCentered from "@/components/sections/hero/HeroCentered";
import FeatureBento from "@/components/sections/feature/FeatureBento";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import {
@@ -165,7 +165,7 @@ export default function LandingPage() {
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
<PricingCardOne
title="Premium Pricing Plans"
description="Choose the perfect plan for your business needs with transparent pricing."
tag="Flexible Plans"
@@ -175,22 +175,22 @@ export default function LandingPage() {
animationType="slide-up"
plans={[
{
id: "starter", badge: "Popular", badgeIcon: Star,
price: "$99", subtitle: "Perfect for getting started", features: [
id: "starter", name: "Starter", price: "$99", period: "/month", description: "Perfect for getting started", features: [
"Up to 1,000 users", "Core analytics", "Email support", "API access"],
buttons: [{ text: "Get Started", href: "#contact" }],
button: { text: "Get Started", href: "#contact" },
highlighted: false,
},
{
id: "professional", badge: "Premium", badgeIcon: Crown,
price: "$299", subtitle: "For growing teams", features: [
id: "professional", name: "Professional", price: "$299", period: "/month", description: "For growing teams", features: [
"Unlimited users", "Advanced analytics", "Priority support", "Custom integrations", "Team collaboration"],
buttons: [{ text: "Upgrade Now", href: "#contact" }],
button: { text: "Upgrade Now", href: "#contact" },
highlighted: true,
},
{
id: "enterprise", badge: "Elite", badgeIcon: Sparkles,
price: "Custom", subtitle: "For enterprises", features: [
id: "enterprise", name: "Enterprise", price: "Custom", period: "", description: "For enterprises", features: [
"Unlimited everything", "Dedicated account manager", "24/7 premium support", "Custom development", "White-label solution"],
buttons: [{ text: "Contact Sales", href: "#contact" }],
button: { text: "Contact Sales", href: "#contact" },
highlighted: false,
},
]}
/>