Compare commits
17 Commits
version_3
...
9bc4c3aeca
| Author | SHA1 | Date | |
|---|---|---|---|
| 9bc4c3aeca | |||
| ef76996dd6 | |||
| 6c760b86ce | |||
| d36d888ba2 | |||
| 1b8e0d80bb | |||
| ffe6db7d59 | |||
| 4feefc56df | |||
| e6cdb83190 | |||
| d74d35c486 | |||
| a389e241bf | |||
| 20984665d8 | |||
| 8792e188f1 | |||
| e31104a0fb | |||
| 809d6d5f56 | |||
| ca43ab67ad | |||
| debdf888ee | |||
| ee7670312f |
@@ -5,12 +5,12 @@
|
|||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #000000;
|
--background: #000000;
|
||||||
--card: #1b1b1b;
|
--card: #1a1a1a;
|
||||||
--foreground: #ffffff;
|
--foreground: #ffffff;
|
||||||
--primary-cta: #ff0000;
|
--primary-cta: #ff0000;
|
||||||
--secondary-cta: #151515;
|
--secondary-cta: #1a1a1a;
|
||||||
--accent: #303030;
|
--accent: #ff3333;
|
||||||
--background-accent: #303030;
|
--background-accent: #ff0000;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
@@ -1272,4 +1272,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
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 HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||||
import FeatureCardEleven from '@/components/sections/feature/FeatureCardEleven';
|
import FeatureCardEleven from '@/components/sections/feature/FeatureCardEleven';
|
||||||
@@ -11,7 +11,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
|
|||||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
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() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -120,57 +120,58 @@ export default function LandingPage() {
|
|||||||
description="Choose the right package for your learning goals and schedule."
|
description="Choose the right package for your learning goals and schedule."
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "starter",
|
id: "1",
|
||||||
title: "Starter",
|
name: "Starter",
|
||||||
|
description: "Perfect for beginners getting started in tech",
|
||||||
price: "$499",
|
price: "$499",
|
||||||
period: "/month",
|
period: "monthly",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672729251-otls1mux.jpg",
|
|
||||||
button: {
|
|
||||||
text: "Get Started",
|
|
||||||
href: "#contact"
|
|
||||||
},
|
|
||||||
features: [
|
features: [
|
||||||
"5 beginner-level courses",
|
"5 beginner-level courses",
|
||||||
"Weekly live sessions",
|
"Weekly live sessions",
|
||||||
"Email support",
|
"Email support",
|
||||||
"Certificate of completion"
|
"Certificate of completion"
|
||||||
]
|
],
|
||||||
|
ctaPrimary: {
|
||||||
|
text: "Start Learning",
|
||||||
|
href: "#contact"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "professional",
|
id: "2",
|
||||||
title: "Professional",
|
name: "Professional",
|
||||||
|
description: "Comprehensive training for career advancement",
|
||||||
price: "$999",
|
price: "$999",
|
||||||
period: "/month",
|
period: "monthly",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672730035-e2exv3ex.jpg",
|
|
||||||
button: {
|
|
||||||
text: "Enroll Now",
|
|
||||||
href: "#contact"
|
|
||||||
},
|
|
||||||
features: [
|
features: [
|
||||||
"15 intermediate courses",
|
"15 intermediate courses",
|
||||||
"Daily live sessions and office hours",
|
"Daily live sessions and office hours",
|
||||||
"1-on-1 mentorship",
|
"1-on-1 mentorship",
|
||||||
"Portfolio building support",
|
"Portfolio building support",
|
||||||
"Priority job board access"
|
"Career guidance"
|
||||||
]
|
],
|
||||||
},
|
ctaPrimary: {
|
||||||
{
|
text: "Get Started",
|
||||||
id: "enterprise",
|
|
||||||
title: "Enterprise",
|
|
||||||
price: "$2,499",
|
|
||||||
period: "/month",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731012-02y7h7no.jpg",
|
|
||||||
button: {
|
|
||||||
text: "Contact Sales",
|
|
||||||
href: "#contact"
|
href: "#contact"
|
||||||
},
|
},
|
||||||
|
highlighted: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3",
|
||||||
|
name: "Enterprise",
|
||||||
|
description: "Complete solution with job placement guarantee",
|
||||||
|
price: "$2,499",
|
||||||
|
period: "monthly",
|
||||||
features: [
|
features: [
|
||||||
"All Professional features",
|
"All Professional features",
|
||||||
"Advanced specialization tracks",
|
"Advanced specialization tracks",
|
||||||
"Guaranteed job placement",
|
"Guaranteed job placement",
|
||||||
"Corporate training customization",
|
"Corporate training customization",
|
||||||
"Dedicated account manager"
|
"Lifetime career support"
|
||||||
]
|
],
|
||||||
|
ctaPrimary: {
|
||||||
|
text: "Contact Sales",
|
||||||
|
href: "#contact"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -428,4 +429,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user