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