5 Commits

Author SHA1 Message Date
95ce3a4ec4 Update src/app/page.tsx 2026-03-21 12:48:35 +00:00
b746a1b65f Merge version_11 into main
Merge version_11 into main
2026-03-21 12:47:34 +00:00
5b9724fedd Merge version_11 into main
Merge version_11 into main
2026-03-21 12:47:12 +00:00
35a884a091 Merge version_11 into main
Merge version_11 into main
2026-03-21 12:46:45 +00:00
9bb59696d6 Merge version_11 into main
Merge version_11 into main
2026-03-21 12:44:59 +00:00

View File

@@ -12,6 +12,7 @@ import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import { Facebook, Linkedin, Twitter } from "lucide-react";
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
export default function LandingPage() {
return (
@@ -37,6 +38,8 @@ export default function LandingPage() {
name: "About", id: "about"},
{
name: "Features", id: "features"},
{
name: "Pricing", id: "pricing"},
{
name: "Testimonials", id: "testimonials"},
{
@@ -155,6 +158,36 @@ export default function LandingPage() {
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Flexible Pricing Plans"
description="Choose a plan that fits your learning style and career goals. All plans include access to our expert instructors and community support."
plans={[
{
id: "basic", badge: "Starter", price: "$49/month", subtitle: "Access essential courses", features: [
"Access to 3 Core Courses", "Community Forum Support", "Monthly Q&A Sessions", "Certificate of Completion"
],
buttons: [{ text: "Start Free Trial", href: "#contact" }]
},
{
id: "pro", badge: "Most Popular", price: "$99/month", subtitle: "Unlock full learning potential", features: [
"Access to ALL Core & Advanced Courses", "Priority Email Support", "Weekly Live Workshops", "Dedicated Career Guidance", "Exclusive Project Templates"
],
buttons: [{ text: "Choose Pro", href: "#contact" }]
},
{
id: "premium", badge: "Enterprise", price: "$249/month", subtitle: "Tailored for teams & advanced learners", features: [
"All Pro features", "Customized Learning Paths", "1:1 Mentorship Sessions", "API Access & Integrations", "Private Team Workspaces", "Dedicated Account Manager"
],
buttons: [{ text: "Contact Sales", href: "#contact" }]
}
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
textboxLayout="default"