15 Commits

Author SHA1 Message Date
1e0cae0c7c Merge version_14 into main
Merge version_14 into main
2025-12-26 11:46:40 +00:00
8979c08652 Merge version_12 into main
Merge version_12 into main
2025-12-26 08:48:03 +00:00
2c075a9359 Merge version_11 into main
Merge version_11 into main
2025-12-26 08:45:37 +00:00
78c817b941 Merge version_8 into main
Merge version_8 into main
2025-12-26 08:20:15 +00:00
d889579153 Merge version_8 into main
Merge version_8 into main
2025-12-26 08:18:18 +00:00
32d53c6dd4 Merge version_7 into main
Merge version_7 into main
2025-12-25 16:11:18 +00:00
9bc4c3aeca Merge version_7 into main
Merge version_7 into main
2025-12-25 16:07:24 +00:00
d36d888ba2 Merge version_7 into main
Merge version_7 into main
2025-12-25 16:05:14 +00:00
ffe6db7d59 Merge version_6 into main
Merge version_6 into main
2025-12-25 15:56:52 +00:00
e6cdb83190 Merge version_5 into main
Merge version_5 into main
2025-12-25 15:30:03 +00:00
a389e241bf Merge version_5 into main
Merge version_5 into main
2025-12-25 15:27:48 +00:00
8792e188f1 Merge version_4 into main
Merge version_4 into main
2025-12-25 15:17:19 +00:00
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

View File

@@ -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>