8 Commits

Author SHA1 Message Date
00427c2157 Update src/app/page.tsx 2025-12-25 16:11:14 +00:00
103774478a Update src/app/layout.tsx 2025-12-25 16:11:13 +00:00
ef76996dd6 Update src/app/page.tsx 2025-12-25 16:07:19 +00:00
6c760b86ce Update src/app/layout.tsx 2025-12-25 16:07:19 +00:00
1b8e0d80bb Update src/app/page.tsx 2025-12-25 16:05:10 +00:00
4feefc56df Update src/app/globals.css 2025-12-25 15:56:47 +00:00
d74d35c486 Update src/app/page.tsx 2025-12-25 15:29:58 +00:00
20984665d8 Update src/app/page.tsx 2025-12-25 15:27:43 +00:00
2 changed files with 24 additions and 57 deletions

View File

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

View File

@@ -2,15 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
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 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 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 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";
export default function LandingPage() {
@@ -115,66 +115,33 @@ export default function LandingPage() {
</div>
<div id="pricing" data-section="pricing">
<PricingCardNine
<FeatureCardFourteen
title="Training Packages"
description="Choose the right package for your learning goals and schedule."
plans={[
features={[
{
id: "starter",
id: "1",
title: "Starter",
price: "$499",
period: "/month",
description: "5 beginner-level courses, Weekly live sessions, Email support, Certificate of completion",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672729251-otls1mux.jpg",
button: {
text: "Get Started",
href: "#contact"
},
features: [
"5 beginner-level courses",
"Weekly live sessions",
"Email support",
"Certificate of completion"
]
imageAlt: "Starter package"
},
{
id: "professional",
id: "2",
title: "Professional",
price: "$999",
period: "/month",
description: "15 intermediate courses, Daily live sessions and office hours, 1-on-1 mentorship, Portfolio building support, Priority job board access",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672730035-e2exv3ex.jpg",
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"
]
imageAlt: "Professional package"
},
{
id: "enterprise",
id: "3",
title: "Enterprise",
price: "$2,499",
period: "/month",
description: "All Professional features, Advanced specialization tracks, Guaranteed job placement, Corporate training customization, Dedicated account manager",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731012-02y7h7no.jpg",
button: {
text: "Contact Sales",
href: "#contact"
},
features: [
"All Professional features",
"Advanced specialization tracks",
"Guaranteed job placement",
"Corporate training customization",
"Dedicated account manager"
]
imageAlt: "Enterprise package"
}
]}
textboxLayout="default"
animationType="slide-up"
useInvertedBackground="noInvert"
/>
</div>