18 Commits

Author SHA1 Message Date
e3b84364a0 Merge version_9 into main
Merge version_9 into main
2025-12-26 18:16:27 +00:00
0bdc55aa54 Update src/app/page.tsx 2025-12-26 18:16:23 +00:00
8b743295ed Update src/app/layout.tsx 2025-12-26 18:16:22 +00:00
92bf8ff84a Merge version_9 into main
Merge version_9 into main
2025-12-26 18:14:11 +00:00
4ac11406ef Update src/app/page.tsx 2025-12-26 18:14:06 +00:00
d1531e7298 Merge version_9 into main
Merge version_9 into main
2025-12-26 18:11:57 +00:00
60998a976e Update src/app/page.tsx 2025-12-26 18:11:53 +00:00
34c33f6ba0 Merge version_7 into main
Merge version_7 into main
2025-12-26 18:06:47 +00:00
7b56140ece Merge version_6 into main
Merge version_6 into main
2025-12-26 17:09:04 +00:00
693daceba3 Merge version_6 into main
Merge version_6 into main
2025-12-26 17:06:54 +00:00
e77308560b Merge version_6 into main
Merge version_6 into main
2025-12-26 17:04:46 +00:00
5dc48b6bde Merge version_5 into main
Merge version_5 into main
2025-12-26 16:41:10 +00:00
b1cae1a92a Merge version_5 into main
Merge version_5 into main
2025-12-26 16:39:26 +00:00
aa6c1b30ec Merge version_4 into main
Merge version_4 into main
2025-12-26 16:35:17 +00:00
f408a4698e Merge version_4 into main
Merge version_4 into main
2025-12-26 16:33:47 +00:00
be90f82c4a Merge version_3 into main
Merge version_3 into main
2025-12-26 16:26:17 +00:00
b9f1912cc9 Merge version_3 into main
Merge version_3 into main
2025-12-26 16:23:17 +00:00
d5d784117c Merge version_3 into main
Merge version_3 into main
2025-12-26 16:21:03 +00:00
2 changed files with 54 additions and 51 deletions

View File

@@ -1272,4 +1272,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -11,7 +11,7 @@ import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCar
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Sparkles, Zap, Award, Twitter, Linkedin, Github } from "lucide-react";
import { Sparkles, Zap, Award, Twitter, Linkedin, Github, Check } from "lucide-react";
export default function LandingPage() {
return (
@@ -155,64 +155,66 @@ export default function LandingPage() {
<div id="pricing" data-section="pricing">
<PricingCardTwo
title="Simple, Transparent Pricing"
description="Choose the perfect plan for your learning journey. No hidden fees, cancel anytime."
title="Choose Your Learning Path"
description="Start your coding journey with flexible pricing options that fit your goals and budget."
textboxLayout="default"
animationType="opacity"
animationType="scale-rotate"
useInvertedBackground="noInvert"
gridVariant="three-equal-width-columns"
plans={[
{
id: "starter",
badge: "Starter",
badgeIcon: Zap,
price: "$49/month",
subtitle: "Perfect for beginners",
buttons: [
{ text: "Get Started", href: "#" },
{ text: "Learn More", href: "#" }
],
id: "1",
name: "Starter",
description: "Perfect for beginners starting their coding journey",
price: "$99",
period: "per month",
badge: "",
features: [
"Access to 3 core courses",
"Community forum access",
"Email support",
"Certificate of completion"
]
{ text: "Access to all beginner courses", included: true },
{ text: "Community forum support", included: true },
{ text: "Basic project templates", included: true },
{ text: "Certificate of completion", included: true },
{ text: "1-on-1 mentorship", included: false },
{ text: "Advanced courses", included: false }
],
ctaText: "Get Started",
ctaHref: "#"
},
{
id: "professional",
badge: "Professional",
badgeIcon: Sparkles,
price: "$99/month",
subtitle: "Best for serious learners",
buttons: [
{ text: "Get Started", href: "#" },
{ text: "Chat to Sales", href: "#" }
],
id: "2",
name: "Professional",
description: "Best for serious learners ready to advance their skills",
price: "$199",
period: "per month",
badge: "Most Popular",
features: [
"Access to 15+ advanced courses",
"1-on-1 mentorship sessions",
"Priority support",
"Exclusive job board",
"Portfolio review sessions"
]
{ text: "Access to all courses", included: true },
{ text: "1-on-1 mentorship sessions", included: true },
{ text: "Premium project portfolio", included: true },
{ text: "Industry-recognized certificates", included: true },
{ text: "Career guidance support", included: true },
{ text: "Priority community access", included: true }
],
ctaText: "Start Learning",
ctaHref: "#"
},
{
id: "enterprise",
badge: "Enterprise",
badgeIcon: Award,
price: "Custom",
subtitle: "For teams and organizations",
buttons: [
{ text: "Contact Sales", href: "#" },
{ text: "Schedule Call", href: "#" }
],
id: "3",
name: "Enterprise",
description: "For teams and organizations scaling their development",
price: "$499",
period: "per month",
badge: "",
features: [
"All Professional features",
"Custom curriculum design",
"Team management tools",
"Dedicated account manager",
"Advanced analytics and reporting"
]
{ text: "Everything in Professional", included: true },
{ text: "Team management dashboard", included: true },
{ text: "Custom learning tracks", included: true },
{ text: "Direct instructor access", included: true },
{ text: "Advanced analytics", included: true },
{ text: "Priority support", included: true }
],
ctaText: "Contact Sales",
ctaHref: "contact"
}
]}
/>
@@ -334,7 +336,8 @@ export default function LandingPage() {
imageAlt="Subscribe illustration"
mediaPosition="right"
inputPlaceholder="your@email.com"
buttonText="Subscribe"
buttonText="Join"
buttonColor="green"
termsText="We respect your privacy. Unsubscribe anytime."
/>
</div>
@@ -352,4 +355,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}