Compare commits
17 Commits
version_11
...
1e0cae0c7c
| Author | SHA1 | Date | |
|---|---|---|---|
| 1e0cae0c7c | |||
| 6c91661843 | |||
| 8979c08652 | |||
| 50cc6c80e4 | |||
| 2c075a9359 | |||
| 78c817b941 | |||
| d889579153 | |||
| 32d53c6dd4 | |||
| 9bc4c3aeca | |||
| d36d888ba2 | |||
| ffe6db7d59 | |||
| e6cdb83190 | |||
| a389e241bf | |||
| 8792e188f1 | |||
| 809d6d5f56 | |||
| debdf888ee | |||
| ee7670312f |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #000000;
|
--background: #0a0a0a;
|
||||||
--card: #1a1a1a;
|
--card: #1a1a1a;
|
||||||
--foreground: #ffffff;
|
--foreground: #ffffff;
|
||||||
--primary-cta: #ff0000;
|
--primary-cta: #e6e6e6;
|
||||||
--secondary-cta: #1a1a1a;
|
--secondary-cta: #1a1a1a;
|
||||||
--accent: #ff3333;
|
--accent: #737373;
|
||||||
--background-accent: #ff0000;
|
--background-accent: #737373;
|
||||||
|
|
||||||
/* 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);
|
||||||
|
|||||||
@@ -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() {
|
||||||
@@ -106,60 +107,42 @@ 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",
|
||||||
price: "$2,999",
|
brand: "Go Work",
|
||||||
name: "Starter Program",
|
name: "Starter Program",
|
||||||
buttons: [
|
price: "$2,999",
|
||||||
{ text: "Get Started", href: "contact" },
|
rating: 4,
|
||||||
{ text: "Learn More", onClick: () => {} }
|
reviewCount: "245",
|
||||||
],
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492693670-lj7ueobz.png",
|
||||||
features: [
|
imageAlt: "Starter Program"
|
||||||
"5 beginner-level courses",
|
|
||||||
"Weekly live sessions",
|
|
||||||
"Email support",
|
|
||||||
"Community access"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2",
|
||||||
badge: "Most Popular",
|
brand: "Go Work",
|
||||||
price: "$7,999",
|
|
||||||
name: "Professional Program",
|
name: "Professional Program",
|
||||||
buttons: [
|
price: "$7,999",
|
||||||
{ text: "Get Started", href: "contact" },
|
rating: 5,
|
||||||
{ text: "Learn More", onClick: () => {} }
|
reviewCount: "512",
|
||||||
],
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731963-dy25hbg0.jpg",
|
||||||
features: [
|
imageAlt: "Professional Program"
|
||||||
"15 intermediate courses",
|
|
||||||
"Daily live sessions",
|
|
||||||
"1-on-1 mentorship",
|
|
||||||
"Portfolio building",
|
|
||||||
"Priority support"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3",
|
||||||
price: "$14,999",
|
brand: "Go Work",
|
||||||
name: "Enterprise Program",
|
name: "Enterprise Program",
|
||||||
buttons: [
|
price: "$14,999",
|
||||||
{ text: "Get Started", href: "contact" },
|
rating: 5,
|
||||||
{ text: "Learn More", onClick: () => {} }
|
reviewCount: "389",
|
||||||
],
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672732968-aww7it2l.jpg",
|
||||||
features: [
|
imageAlt: "Enterprise Program"
|
||||||
"All intermediate courses",
|
|
||||||
"Advanced specializations",
|
|
||||||
"Guaranteed job placement",
|
|
||||||
"Dedicated account manager",
|
|
||||||
"Career counseling",
|
|
||||||
"Lifetime updates"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground="invertDefault"
|
useInvertedBackground="invertDefault"
|
||||||
@@ -180,49 +163,57 @@ export default function LandingPage() {
|
|||||||
id: "1",
|
id: "1",
|
||||||
name: "Alex Johnson",
|
name: "Alex Johnson",
|
||||||
role: "Full Stack Developer",
|
role: "Full Stack Developer",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672732968-aww7it2l.jpg"
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672732968-aww7it2l.jpg",
|
||||||
|
rating: 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2",
|
||||||
name: "Maria Chen",
|
name: "Maria Chen",
|
||||||
role: "Frontend Specialist",
|
role: "Frontend Specialist",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672733745-z17sze1s.jpg"
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672733745-z17sze1s.jpg",
|
||||||
|
rating: 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3",
|
||||||
name: "David Kumar",
|
name: "David Kumar",
|
||||||
role: "DevOps Engineer",
|
role: "DevOps Engineer",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672734552-1pi21ji6.jpg"
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672734552-1pi21ji6.jpg",
|
||||||
|
rating: 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4",
|
||||||
name: "Sophie Martin",
|
name: "Sophie Martin",
|
||||||
role: "UI/UX Designer",
|
role: "UI/UX Designer",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672735551-zee5mm98.jpg"
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672735551-zee5mm98.jpg",
|
||||||
|
rating: 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5",
|
||||||
name: "James Wilson",
|
name: "James Wilson",
|
||||||
role: "Backend Architect",
|
role: "Backend Architect",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672736383-37d60c7y.jpg"
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672736383-37d60c7y.jpg",
|
||||||
|
rating: 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6",
|
||||||
name: "Lisa Chen",
|
name: "Lisa Chen",
|
||||||
role: "Data Science Lead",
|
role: "Data Science Lead",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672737218-lpv1rhki.jpg"
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672737218-lpv1rhki.jpg",
|
||||||
|
rating: 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "7",
|
id: "7",
|
||||||
name: "Michael Brown",
|
name: "Michael Brown",
|
||||||
role: "Cloud Solutions Expert",
|
role: "Cloud Solutions Expert",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672738160-spbsp0n6.jpg"
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672738160-spbsp0n6.jpg",
|
||||||
|
rating: 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "8",
|
id: "8",
|
||||||
name: "Sarah Anderson",
|
name: "Sarah Anderson",
|
||||||
role: "Security Specialist",
|
role: "Security Specialist",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492693670-lj7ueobz.png"
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492693670-lj7ueobz.png",
|
||||||
|
rating: 5
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
speed={40}
|
speed={40}
|
||||||
|
|||||||
Reference in New Issue
Block a user