8 Commits

Author SHA1 Message Date
1946674367 Merge version_2 into main
Merge version_2 into main
2026-03-19 23:44:23 +00:00
f41441096b Update src/app/page.tsx 2026-03-19 23:44:19 +00:00
7596b9940b Merge version_2 into main
Merge version_2 into main
2026-03-19 23:43:54 +00:00
11823bb201 Update src/app/page.tsx 2026-03-19 23:43:50 +00:00
16c64f58df Merge version_2 into main
Merge version_2 into main
2026-03-19 23:43:28 +00:00
9ca7a769db Update src/app/page.tsx 2026-03-19 23:43:24 +00:00
cf62f700f7 Merge version_2 into main
Merge version_2 into main
2026-03-19 23:42:34 +00:00
404a347dfb Update src/app/page.tsx 2026-03-19 23:42:30 +00:00

View File

@@ -7,6 +7,7 @@ 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 +166,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 +176,16 @@ export default function LandingPage() {
animationType="slide-up"
plans={[
{
id: "starter", badge: "Popular", badgeIcon: Star,
price: "$99", subtitle: "Perfect for getting started", features: [
"Up to 1,000 users", "Core analytics", "Email support", "API access"],
buttons: [{ text: "Get Started", href: "#contact" }],
id: "starter", badge: "Starter", price: "$99", subtitle: "per month", features: [
"Up to 1,000 users", "Core analytics", "Email support", "API access"]
},
{
id: "professional", badge: "Premium", badgeIcon: Crown,
price: "$299", subtitle: "For growing teams", features: [
"Unlimited users", "Advanced analytics", "Priority support", "Custom integrations", "Team collaboration"],
buttons: [{ text: "Upgrade Now", href: "#contact" }],
id: "professional", badge: "Professional", price: "$299", subtitle: "per month", features: [
"Unlimited users", "Advanced analytics", "Priority support", "Custom integrations", "Team collaboration"]
},
{
id: "enterprise", badge: "Elite", badgeIcon: Sparkles,
price: "Custom", subtitle: "For enterprises", features: [
"Unlimited everything", "Dedicated account manager", "24/7 premium support", "Custom development", "White-label solution"],
buttons: [{ text: "Contact Sales", href: "#contact" }],
id: "enterprise", badge: "Enterprise", price: "Custom", subtitle: "contact us", features: [
"Unlimited everything", "Dedicated account manager", "24/7 premium support", "Custom development", "White-label solution"]
},
]}
/>