diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx index 2252dad..f473a60 100644 --- a/src/app/features/page.tsx +++ b/src/app/features/page.tsx @@ -7,7 +7,7 @@ import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; import ContactText from "@/components/sections/contact/ContactText"; import FooterMedia from "@/components/sections/footer/FooterMedia"; import Link from "next/link"; -import { Zap, ArrowRight, CreditCard } from "lucide-react"; +import { Zap, ArrowRight, CreditCard, Sparkles, Star } from "lucide-react"; export default function FeaturesPage() { const navItems = [ @@ -84,17 +84,17 @@ export default function FeaturesPage() { tagIcon={CreditCard} plans={[ { - id: "starter", tag: "Starter Plan", tagIcon: "Sparkles", price: "$49", period: "/month", description: "Ideal for solo founders and small sales teams getting started.", button: { text: "Start Free Trial", href: "#contact" }, + id: "starter", tag: "Starter Plan", tagIcon: Sparkles, price: "$49", period: "/month", description: "Ideal for solo founders and small sales teams getting started.", button: { text: "Start Free Trial", href: "#contact" }, featuresTitle: "Includes:", features: [ "Up to 500 leads per month", "Basic contact management", "Email notifications", "Manual follow-up tracking", "1 team member"], }, { - id: "professional", tag: "Professional Plan", tagIcon: "Star", price: "$149", period: "/month", description: "For scaling teams ready to leverage advanced automation.", button: { text: "Start Free Trial", href: "#contact" }, + id: "professional", tag: "Professional Plan", tagIcon: Star, price: "$149", period: "/month", description: "For scaling teams ready to leverage advanced automation.", button: { text: "Start Free Trial", href: "#contact" }, featuresTitle: "Everything in Starter, plus:", features: [ "Unlimited leads", "Lead scoring & prioritization", "Automated workflows", "Advanced analytics dashboard", "Up to 5 team members", "API access"], }, { - id: "enterprise", tag: "Enterprise Plan", tagIcon: "Zap", price: "Custom", period: "/year", description: "For enterprise teams with complex requirements and dedicated support.", button: { text: "Contact Sales", href: "#contact" }, + id: "enterprise", tag: "Enterprise Plan", tagIcon: Zap, price: "Custom", period: "/year", description: "For enterprise teams with complex requirements and dedicated support.", button: { text: "Contact Sales", href: "#contact" }, featuresTitle: "Everything in Professional, plus:", features: [ "Unlimited team members", "Custom integrations", "Dedicated account manager", "Priority support 24/7", "Advanced security features", "Custom training & onboarding"], }, diff --git a/src/app/page.tsx b/src/app/page.tsx index 9b9a7ce..47d1ff7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCa import FaqBase from "@/components/sections/faq/FaqBase"; import ContactText from "@/components/sections/contact/ContactText"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Zap, ArrowRight, Target, CreditCard, Heart, HelpCircle } from "lucide-react"; +import { Zap, ArrowRight, Target, CreditCard, Heart, HelpCircle, Sparkles, Star } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -148,19 +148,19 @@ export default function HomePage() { tagIcon={CreditCard} plans={[ { - id: "starter", tag: "Starter Plan", tagIcon: "Sparkles", price: "$49", period: "/month", description: "Perfect for solo entrepreneurs and small teams just starting their lead management journey.", button: { + id: "starter", tag: "Starter Plan", tagIcon: Sparkles, price: "$49", period: "/month", description: "Perfect for solo entrepreneurs and small teams just starting their lead management journey.", button: { text: "Start Free Trial", href: "#contact"}, featuresTitle: "What's Included:", features: [ "Up to 500 leads per month", "Basic contact management", "Email notifications", "Manual follow-up tracking", "1 team member"], }, { - id: "professional", tag: "Professional Plan", tagIcon: "Star", price: "$149", period: "/month", description: "For growing teams ready to scale. Includes automation and advanced analytics.", button: { + id: "professional", tag: "Professional Plan", tagIcon: Star, price: "$149", period: "/month", description: "For growing teams ready to scale. Includes automation and advanced analytics.", button: { text: "Start Free Trial", href: "#contact"}, featuresTitle: "Everything in Starter, plus:", features: [ "Unlimited leads", "Lead scoring & prioritization", "Automated workflows", "Advanced analytics dashboard", "Up to 5 team members", "API access"], }, { - id: "enterprise", tag: "Enterprise Plan", tagIcon: "Zap", price: "Custom", period: "/year", description: "For large organizations with custom requirements and dedicated support.", button: { + id: "enterprise", tag: "Enterprise Plan", tagIcon: Zap, price: "Custom", period: "/year", description: "For large organizations with custom requirements and dedicated support.", button: { text: "Contact Sales", href: "#contact"}, featuresTitle: "Everything in Professional, plus:", features: [ "Unlimited team members", "Custom integrations", "Dedicated account manager", "Priority support 24/7", "Advanced security features", "Custom training & onboarding"],