Merge version_12 into main #16
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user