Compare commits
15 Commits
version_14
...
1e0cae0c7c
| Author | SHA1 | Date | |
|---|---|---|---|
| 1e0cae0c7c | |||
| 8979c08652 | |||
| 2c075a9359 | |||
| 78c817b941 | |||
| d889579153 | |||
| 32d53c6dd4 | |||
| 9bc4c3aeca | |||
| d36d888ba2 | |||
| ffe6db7d59 | |||
| e6cdb83190 | |||
| a389e241bf | |||
| 8792e188f1 | |||
| 809d6d5f56 | |||
| debdf888ee | |||
| ee7670312f |
@@ -11,6 +11,7 @@ import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCar
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import ContactInline from "@/components/sections/contact/ContactInline";
|
||||
import FooterSocial from "@/components/sections/footer/FooterSocial";
|
||||
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
||||
import { Quote, Users } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -29,12 +30,12 @@ export default function LandingPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
links={[
|
||||
{ label: "Home", href: "nav" },
|
||||
{ label: "Courses", href: "features" },
|
||||
{ label: "About", href: "about" },
|
||||
{ label: "Team", href: "team" },
|
||||
{ label: "FAQ", href: "faq" }
|
||||
navItems={[
|
||||
{ name: "Home", id: "nav" },
|
||||
{ name: "Courses", id: "features" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "FAQ", id: "faq" }
|
||||
]}
|
||||
brandName="Go Work"
|
||||
button={{
|
||||
@@ -106,61 +107,44 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
<ProductCardTwo
|
||||
title="Training Packages"
|
||||
description="Choose the plan that fits your learning goals and career aspirations."
|
||||
plans={[
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Starter Program",
|
||||
description: "Perfect for beginners entering IT",
|
||||
brand: "Go Work",
|
||||
name: "Starter Program",
|
||||
price: "$2,999",
|
||||
period: "12 weeks",
|
||||
features: [
|
||||
"Fundamentals of programming",
|
||||
"Basic web development",
|
||||
"Career guidance",
|
||||
"Community access",
|
||||
"Certificate of completion"
|
||||
],
|
||||
isFeatured: false
|
||||
rating: 4,
|
||||
reviewCount: "245",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492693670-lj7ueobz.png",
|
||||
imageAlt: "Starter Program"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Professional Program",
|
||||
description: "Comprehensive training for career change",
|
||||
brand: "Go Work",
|
||||
name: "Professional Program",
|
||||
price: "$7,999",
|
||||
period: "16 weeks",
|
||||
features: [
|
||||
"Full-stack development",
|
||||
"Advanced frameworks",
|
||||
"Portfolio projects",
|
||||
"1-on-1 mentorship",
|
||||
"Job placement assistance",
|
||||
"Industry certifications"
|
||||
],
|
||||
isFeatured: true
|
||||
rating: 5,
|
||||
reviewCount: "512",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731963-dy25hbg0.jpg",
|
||||
imageAlt: "Professional Program"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Enterprise Program",
|
||||
description: "Premium training with job guarantee",
|
||||
brand: "Go Work",
|
||||
name: "Enterprise Program",
|
||||
price: "$14,999",
|
||||
period: "20 weeks",
|
||||
features: [
|
||||
"Enterprise-level training",
|
||||
"Cloud computing & DevOps",
|
||||
"Advanced specializations",
|
||||
"Job placement guarantee",
|
||||
"6 months post-grad support",
|
||||
"Premium industry certifications",
|
||||
"Alumni network access"
|
||||
],
|
||||
isFeatured: false
|
||||
rating: 5,
|
||||
reviewCount: "389",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672732968-aww7it2l.jpg",
|
||||
imageAlt: "Enterprise Program"
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="invertDefault"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user