Merge version_7 into main

Merge version_7 into main
This commit was merged in pull request #10.
This commit is contained in:
2025-12-25 16:07:24 +00:00
2 changed files with 50 additions and 18 deletions

View File

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

View File

@@ -5,7 +5,7 @@ import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal";
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import AboutMetric from '@/components/sections/about/AboutMetric';
import FeatureCardEleven from '@/components/sections/feature/FeatureCardEleven';
import FeatureCardFourteen from '@/components/sections/feature/FeatureCardFourteen';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import FaqBase from '@/components/sections/faq/FaqBase';
@@ -115,36 +115,68 @@ export default function LandingPage() {
</div>
<div id="pricing" data-section="pricing">
<FeatureCardFourteen
<PricingCardNine
title="Training Packages"
description="Choose the right package for your learning goals and schedule."
features={[
plans={[
{
id: "1",
title: "Starter",
description: "5 beginner-level courses, Weekly live sessions, Email support, Certificate of completion - $499/month",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672729251-otls1mux.jpg",
imageAlt: "Starter training package"
name: "Starter",
description: "Perfect for beginners getting started in tech",
price: "$499",
period: "monthly",
features: [
"5 beginner-level courses",
"Weekly live sessions",
"Email support",
"Certificate of completion"
],
ctaPrimary: {
text: "Start Learning",
href: "#contact"
}
},
{
id: "2",
title: "Professional",
description: "15 intermediate courses, Daily live sessions and office hours, 1-on-1 mentorship, Portfolio building support - $999/month",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672730035-e2exv3ex.jpg",
imageAlt: "Professional training package"
name: "Professional",
description: "Comprehensive training for career advancement",
price: "$999",
period: "monthly",
features: [
"15 intermediate courses",
"Daily live sessions and office hours",
"1-on-1 mentorship",
"Portfolio building support",
"Career guidance"
],
ctaPrimary: {
text: "Get Started",
href: "#contact"
},
highlighted: true
},
{
id: "3",
title: "Enterprise",
description: "All Professional features, Advanced specialization tracks, Guaranteed job placement, Corporate training customization - $2,499/month",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731012-02y7h7no.jpg",
imageAlt: "Enterprise training package"
name: "Enterprise",
description: "Complete solution with job placement guarantee",
price: "$2,499",
period: "monthly",
features: [
"All Professional features",
"Advanced specialization tracks",
"Guaranteed job placement",
"Corporate training customization",
"Lifetime career support"
],
ctaPrimary: {
text: "Contact Sales",
href: "#contact"
}
}
]}
textboxLayout="default"
animationType="slide-up"
useInvertedBackground="noInvert"
tag="Packages"
/>
</div>
@@ -397,4 +429,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}