Update src/app/pricing/page.tsx

This commit is contained in:
2026-01-20 14:25:35 +00:00
parent d922a51dc2
commit 5bb1e03fb8

View File

@@ -30,8 +30,7 @@ export default function PricingPage() {
{ name: "FAQ", id: "faq" } { name: "FAQ", id: "faq" }
]} ]}
button={{ button={{
text: "Enroll Now", text: "Enroll Now", href: "/contact"
href: "/contact"
}} }}
/> />
</div> </div>
@@ -46,52 +45,31 @@ export default function PricingPage() {
animationType="slide-up" animationType="slide-up"
plans={[ plans={[
{ {
id: "starter", id: "starter", price: "$99/month", name: "Starter Course", buttons: [
price: "$99/month",
name: "Starter Course",
buttons: [
{ text: "Get Started", href: "/contact" }, { text: "Get Started", href: "/contact" },
{ text: "Learn More", href: "#" } { text: "Learn More", href: "#" }
], ],
features: [ features: [
"Access to 3 core courses", "Access to 3 core courses", "Community support forum", "Certificate of completion", "Lifetime course access"
"Community support forum",
"Certificate of completion",
"Lifetime course access"
] ]
}, },
{ {
id: "professional", id: "professional", badge: "Most Popular", badgeIcon: Sparkles,
badge: "Most Popular", price: "$199/month", name: "Professional Plan", buttons: [
badgeIcon: Sparkles,
price: "$199/month",
name: "Professional Plan",
buttons: [
{ text: "Get Started", href: "/contact" }, { text: "Get Started", href: "/contact" },
{ text: "Learn More", href: "#" } { text: "Learn More", href: "#" }
], ],
features: [ features: [
"Access to all 15+ courses", "Access to all 15+ courses", "1-on-1 mentorship sessions", "Career guidance support", "Job placement assistance", "Priority community access"
"1-on-1 mentorship sessions",
"Career guidance support",
"Job placement assistance",
"Priority community access"
] ]
}, },
{ {
id: "enterprise", id: "enterprise", price: "$499/month", name: "Enterprise Program", buttons: [
price: "$499/month",
name: "Enterprise Program",
buttons: [
{ text: "Contact Sales", href: "/contact" }, { text: "Contact Sales", href: "/contact" },
{ text: "Schedule Demo", href: "#" } { text: "Schedule Demo", href: "#" }
], ],
features: [ features: [
"Custom curriculum design", "Custom curriculum design", "Team training programs", "Dedicated instructor support", "Corporate certifications", "On-site workshops available"
"Team training programs",
"Dedicated instructor support",
"Corporate certifications",
"On-site workshops available"
] ]
} }
]} ]}
@@ -135,4 +113,4 @@ export default function PricingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }