3 Commits

Author SHA1 Message Date
809d6d5f56 Merge version_4 into main
Merge version_4 into main
2025-12-25 15:15:09 +00:00
debdf888ee Merge version_2 into main
Merge version_2 into main
2025-12-25 14:39:55 +00:00
ee7670312f Merge version_2 into main
Merge version_2 into main
2025-12-25 14:37:24 +00:00
2 changed files with 52 additions and 18 deletions

View File

@@ -5,12 +5,12 @@
/* --vw is set by ThemeProvider */
--background: #000000;
--card: #1a1a1a;
--card: #1b1b1b;
--foreground: #ffffff;
--primary-cta: #ff0000;
--secondary-cta: #1a1a1a;
--accent: #ff3333;
--background-accent: #ff0000;
--secondary-cta: #151515;
--accent: #303030;
--background-accent: #303030;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1,21 +1,22 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal";
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';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Award, TrendingUp, Users, Zap } from "lucide-react";
import { Award, TrendingUp, Users, Zap } from 'lucide-react';
export default function LandingPage() {
return (
<ThemeProvider
selectedTheme="brutalistRed"
defaultButtonVariant="shift-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
@@ -115,33 +116,66 @@ 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",
id: "starter",
title: "Starter",
description: "5 beginner-level courses, Weekly live sessions, Email support, Certificate of completion",
price: "$499",
period: "/month",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672729251-otls1mux.jpg",
imageAlt: "Starter package"
button: {
text: "Get Started",
href: "#contact"
},
features: [
"5 beginner-level courses",
"Weekly live sessions",
"Email support",
"Certificate of completion"
]
},
{
id: "2",
id: "professional",
title: "Professional",
description: "15 intermediate courses, Daily live sessions and office hours, 1-on-1 mentorship, Portfolio building support, Priority job board access",
price: "$999",
period: "/month",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672730035-e2exv3ex.jpg",
imageAlt: "Professional package"
button: {
text: "Enroll Now",
href: "#contact"
},
features: [
"15 intermediate courses",
"Daily live sessions and office hours",
"1-on-1 mentorship",
"Portfolio building support",
"Priority job board access"
]
},
{
id: "3",
id: "enterprise",
title: "Enterprise",
description: "All Professional features, Advanced specialization tracks, Guaranteed job placement, Corporate training customization, Dedicated account manager",
price: "$2,499",
period: "/month",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731012-02y7h7no.jpg",
imageAlt: "Enterprise package"
button: {
text: "Contact Sales",
href: "#contact"
},
features: [
"All Professional features",
"Advanced specialization tracks",
"Guaranteed job placement",
"Corporate training customization",
"Dedicated account manager"
]
}
]}
textboxLayout="default"
animationType="slide-up"
useInvertedBackground="noInvert"
/>
</div>