Update src/app/pricing/page.tsx

This commit is contained in:
2026-02-02 14:53:20 +00:00
parent 71e68f9d2a
commit 74ef612540

View File

@@ -33,8 +33,7 @@ export default function PricingPage() {
{ name: "Contact", id: "/contact" }
]}
button={{
text: "Enroll Now",
href: "/pricing"
text: "Enroll Now", href: "/pricing"
}}
/>
</div>
@@ -46,52 +45,22 @@ export default function PricingPage() {
tag="Pricing"
plans={[
{
id: "starter",
badge: "Best for Beginners",
price: "$199",
subtitle: "Per month - Start your tech journey",
buttons: [{ text: "Start Learning", href: "/contact" }],
id: "starter", badge: "Best for Beginners", price: "$199", subtitle: "Per month - Start your tech journey", buttons: [{ text: "Start Learning", href: "/contact" }],
features: [
"Access to 2-3 foundational courses",
"Self-paced video tutorials",
"Community forum access",
"Basic project templates",
"Course completion certificates",
"Email support within 48 hours"
"Access to 2-3 foundational courses", "Self-paced video tutorials", "Community forum access", "Basic project templates", "Course completion certificates", "Email support within 48 hours"
]
},
{
id: "professional",
badge: "Most Popular",
badgeIcon: Sparkles,
price: "$399",
subtitle: "Per month - Accelerate your career",
buttons: [{ text: "Go Professional", href: "/contact" }],
id: "professional", badge: "Most Popular", badgeIcon: Sparkles,
price: "$399", subtitle: "Per month - Accelerate your career", buttons: [{ text: "Go Professional", href: "/contact" }],
features: [
"Access to all 8+ comprehensive courses",
"Live weekly mentoring sessions",
"Code review and project feedback",
"Industry-recognized certificates",
"Job placement assistance program",
"Exclusive webinars and workshops",
"Priority support within 24 hours"
"Access to all 8+ comprehensive courses", "Live weekly mentoring sessions", "Code review and project feedback", "Industry-recognized certificates", "Job placement assistance program", "Exclusive webinars and workshops", "Priority support within 24 hours"
]
},
{
id: "enterprise",
badge: "For Organizations",
price: "Custom",
subtitle: "Tailored corporate training solutions",
buttons: [{ text: "Contact Sales", href: "/contact" }],
id: "enterprise", badge: "For Organizations", price: "Custom", subtitle: "Tailored corporate training solutions", buttons: [{ text: "Contact Sales", href: "/contact" }],
features: [
"Custom curriculum development",
"Team-based learning programs",
"Dedicated account management",
"Advanced analytics dashboard",
"On-site or remote training options",
"Corporate certification programs",
"Priority technical support",
"Bulk enrollment discounts"
"Custom curriculum development", "Team-based learning programs", "Dedicated account management", "Advanced analytics dashboard", "On-site or remote training options", "Corporate certification programs", "Priority technical support", "Bulk enrollment discounts"
]
}
]}
@@ -111,27 +80,15 @@ export default function PricingPage() {
showRating={true}
testimonials={[
{
id: "1",
name: "Michael Brown",
handle: "@mbrown",
testimonial: "The Professional plan gave me everything I needed. Live sessions were game-changers, and the job placement support landed me a $75k role!",
rating: 5,
id: "1", name: "Michael Brown", handle: "@mbrown", testimonial: "The Professional plan gave me everything I needed. Live sessions were game-changers, and the job placement support landed me a $75k role!", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/selfie-portrait-videocall_23-2149186124.jpg"
},
{
id: "2",
name: "Rachel Davis",
handle: "@racheld",
testimonial: "Started with the beginner plan and upgraded after 2 months. The progression path is clear and the mentorship is invaluable. Worth every dollar!",
rating: 5,
id: "2", name: "Rachel Davis", handle: "@racheld", testimonial: "Started with the beginner plan and upgraded after 2 months. The progression path is clear and the mentorship is invaluable. Worth every dollar!", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/smiling-millennial-man-looking-camera-cafe-headshot-portrait_1163-5163.jpg"
},
{
id: "3",
name: "David Kim",
handle: "@davidkim",
testimonial: "Our company used the Enterprise plan to upskill our entire development team. The custom curriculum was perfectly aligned with our tech stack.",
rating: 5,
id: "3", name: "David Kim", handle: "@davidkim", testimonial: "Our company used the Enterprise plan to upskill our entire development team. The custom curriculum was perfectly aligned with our tech stack.", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/portrait-smiley-woman_23-2148827181.jpg"
}
]}
@@ -144,31 +101,22 @@ export default function PricingPage() {
ctaDescription="Join thousands of successful graduates. Our enrollment specialists will help you choose the perfect plan and get started today."
ctaIcon={Lightbulb}
ctaButton={{
text: "Start Your Journey",
href: "/contact"
text: "Start Your Journey", href: "/contact"
}}
useInvertedBackground="noInvert"
animationType="slide-up"
faqs={[
{
id: "1",
title: "Can I upgrade or downgrade my plan?",
content: "Absolutely! You can change your plan anytime. When upgrading, you'll get immediate access to additional features. Downgrades take effect at your next billing cycle."
id: "1", title: "Can I upgrade or downgrade my plan?", content: "Absolutely! You can change your plan anytime. When upgrading, you'll get immediate access to additional features. Downgrades take effect at your next billing cycle."
},
{
id: "2",
title: "Is there a money-back guarantee?",
content: "Yes! We offer a 14-day money-back guarantee on all plans. If you're not completely satisfied, contact us for a full refund within your first 14 days."
id: "2", title: "Is there a money-back guarantee?", content: "Yes! We offer a 14-day money-back guarantee on all plans. If you're not completely satisfied, contact us for a full refund within your first 14 days."
},
{
id: "3",
title: "Do you offer payment plans?",
content: "Yes, we offer flexible payment options including monthly billing and discounted annual plans. Enterprise customers can also arrange custom payment terms."
id: "3", title: "Do you offer payment plans?", content: "Yes, we offer flexible payment options including monthly billing and discounted annual plans. Enterprise customers can also arrange custom payment terms."
},
{
id: "4",
title: "What happens if I pause my subscription?",
content: "You can pause your subscription for up to 3 months per year. During the pause, you'll retain access to previously accessed materials but won't receive new content or live sessions."
id: "4", title: "What happens if I pause my subscription?", content: "You can pause your subscription for up to 3 months per year. During the pause, you'll retain access to previously accessed materials but won't receive new content or live sessions."
}
]}
/>