22 Commits

Author SHA1 Message Date
7781d27e8a Merge version_14 into main
Merge version_14 into main
2025-12-26 11:48:46 +00:00
7d815994a4 Update src/app/page.tsx 2025-12-26 11:48:41 +00:00
1e0cae0c7c Merge version_14 into main
Merge version_14 into main
2025-12-26 11:46:40 +00:00
6c91661843 Update src/app/page.tsx 2025-12-26 11:46:35 +00:00
8979c08652 Merge version_12 into main
Merge version_12 into main
2025-12-26 08:48:03 +00:00
50cc6c80e4 Update src/app/globals.css 2025-12-26 08:47:58 +00:00
2c075a9359 Merge version_11 into main
Merge version_11 into main
2025-12-26 08:45:37 +00:00
82102bfc62 Update src/app/page.tsx 2025-12-26 08:45:32 +00:00
78c817b941 Merge version_8 into main
Merge version_8 into main
2025-12-26 08:20:15 +00:00
3554a0bc5a Update src/app/page.tsx 2025-12-26 08:20:11 +00:00
d889579153 Merge version_8 into main
Merge version_8 into main
2025-12-26 08:18:18 +00:00
e83405ec66 Update src/app/page.tsx 2025-12-26 08:18:13 +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
2 changed files with 263 additions and 257 deletions

View File

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

View File

@@ -1,392 +1,398 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import AboutMetric from '@/components/sections/about/AboutMetric'; import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
import FeatureCardEleven from '@/components/sections/feature/FeatureCardEleven'; import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
import FeatureCardFourteen from '@/components/sections/feature/FeatureCardFourteen'; import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import TeamCardSix from '@/components/sections/team/TeamCardSix'; import TeamCardFour from "@/components/sections/team/TeamCardFour";
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqDouble from "@/components/sections/faq/FaqDouble";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactInline from "@/components/sections/contact/ContactInline";
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterSocial from "@/components/sections/footer/FooterSocial";
import { Award, TrendingUp, Users, Zap } from "lucide-react"; import { Quote, Users } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="shift-hover" defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur" defaultTextAnimation="entrance-slide"
borderRadius="soft" borderRadius="rounded"
contentWidth="mediumLarge" contentWidth="medium"
sizing="medium" sizing="medium"
background="dotGrid" background="circleGradient"
cardStyle="solid" cardStyle="glass-elevated"
primaryButtonStyle="flat" primaryButtonStyle="gradient"
secondaryButtonStyle="outline" secondaryButtonStyle="glass"
headingFontWeight="semibold" headingFontWeight="normal"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleMinimal <NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "nav" },
{ name: "Courses", id: "features" },
{ name: "About", id: "about" },
{ name: "Team", id: "team" },
{ name: "FAQ", id: "faq" }
]}
brandName="Go Work" brandName="Go Work"
button={{ button={{
text: "Enroll Now", text: "Enroll Now",
href: "#contact" href: "contact"
}} }}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboard <HeroOverlay
logoText="Go Work" title="Master IT Skills with Industry-Leading Training"
description="Master IT skills with industry-leading courses. Start your tech career journey with expert instructors and hands-on projects." description="Join thousands of students who've transformed their careers through our comprehensive bootcamp programs with 92% job placement rate."
tag="IT Training Academy"
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"
imageAlt="Coding and programming workspace" imageAlt="Coding and programming workspace"
frameStyle="card" textPosition="center"
showBlur={true}
showDimOverlay={false}
buttons={[
{ text: "Start Learning", href: "contact" },
{ text: "Explore Courses", href: "features" }
]}
/> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<AboutMetric <TestimonialAboutCard
title="Go Work is transforming IT education by providing practical, industry-focused training that connects students with real-world opportunities." tag="Our Impact"
metrics={[ title="Transforming careers and building the next generation of IT professionals."
{ description="2,500+ Active Students"
icon: Users, subdescription="45+ Expert Instructors"
label: "Active Students", icon={Quote}
value: "2,500+" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731963-dy25hbg0.jpg"
}, imageAlt="IT Training Environment"
{
icon: Award,
label: "Expert Instructors",
value: "45+"
},
{
icon: TrendingUp,
label: "Job Placement Rate",
value: "92%"
},
{
icon: Zap,
label: "Courses Available",
value: "18+"
}
]}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
/> />
</div> </div>
<div id="features" data-section="features"> <div id="features" data-section="features">
<FeatureCardEleven <FeatureCardSixteen
title="How We Train You" title="Why Choose Go Work"
description="Our proven learning methodology takes you from basics to professional-ready in structured steps." description="Our comprehensive approach ensures you gain both theoretical knowledge and practical skills needed in today's job market."
tag="Learning Path" negativeCard={{
features={[ title: "Traditional Learning",
items: [
"Outdated curriculum",
"Lack of hands-on experience",
"Limited mentor support",
"No job placement assistance"
]
}}
positiveCard={{
title: "Go Work Bootcamp",
items: [
"Industry-current courses",
"Real-world project experience",
"Dedicated mentorship",
"92% job placement rate"
]
}}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground="noInvert"
buttons={[
{ text: "Learn More", href: "pricing" }
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardThree
title="Training Packages"
description="Choose the plan that fits your learning goals and career aspirations."
plans={[
{ {
id: 1, id: "1",
title: "Requirements Analysis", title: "Starter Program",
description: "We assess your current skill level and career goals to customize your learning path. Personal mentorship begins here.", description: "Perfect for beginners entering IT",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492694761-e96hadsf.jpg" price: "$2,999",
period: "12 weeks",
features: [
"Fundamentals of programming",
"Basic web development",
"Career guidance",
"Community access",
"Certificate of completion"
],
isFeatured: false
}, },
{ {
id: 2, id: "2",
title: "Intensive Development", title: "Professional Program",
description: "Hands-on coding projects, real-world scenarios, and collaborative team exercises build your practical expertise.", description: "Comprehensive training for career change",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492695669-hy749o3o.jpg" 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
}, },
{ {
id: 3, id: "3",
title: "Quality Testing", title: "Enterprise Program",
description: "Rigorous code reviews, debugging challenges, and quality assurance practices ensure you understand best practices.", description: "Premium training with job guarantee",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672727126-a97a9rhj.jpg" price: "$14,999",
}, period: "20 weeks",
{ features: [
id: 4, "Enterprise-level training",
title: "Career Launch", "Cloud computing & DevOps",
description: "Portfolio building, interview prep, and job placement assistance help you land roles with top tech companies.", "Advanced specializations",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672728464-s6bmwda4.jpg" "Job placement guarantee",
"6 months post-grad support",
"Premium industry certifications",
"Alumni network access"
],
isFeatured: false
} }
]} ]}
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
useInvertedBackground="noInvert" useInvertedBackground="invertDefault"
usePrimaryButtonImage={false}
/> />
</div> </div>
<div id="pricing" data-section="pricing">
<FeatureCardFourteen
title="Training Packages"
description="Choose the right package for your learning goals and schedule."
features={[
{
id: "1",
title: "Starter",
description: "5 beginner-level courses, Weekly live sessions, Email support, Certificate of completion",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672729251-otls1mux.jpg",
imageAlt: "Starter package"
},
{
id: "2",
title: "Professional",
description: "15 intermediate courses, Daily live sessions and office hours, 1-on-1 mentorship, Portfolio building support, Priority job board access",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672730035-e2exv3ex.jpg",
imageAlt: "Professional package"
},
{
id: "3",
title: "Enterprise",
description: "All Professional features, Advanced specialization tracks, Guaranteed job placement, Corporate training customization, Dedicated account manager",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731012-02y7h7no.jpg",
imageAlt: "Enterprise package"
}
]}
textboxLayout="default"
useInvertedBackground="noInvert"
/>
</div>
<div id="team" data-section="team"> <div id="team" data-section="team">
<TeamCardSix <TeamCardFour
title="Meet Our Instructors" title="Meet Our Expert Instructors"
description="Learn from industry experts with years of real-world experience." description="Learn from industry professionals with years of real-world experience."
members={[ textboxLayout="default"
animationType="slide-up"
useInvertedBackground="noInvert"
tag="Our Team"
tagIcon={Users}
team={[
{ {
id: "1", id: "1",
name: "Alex Johnson", name: "Alex Johnson",
role: "Full Stack Lead", 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",
name: "James Wilson",
role: "Backend Architect",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672736383-37d60c7y.jpg",
rating: 5
},
{
id: "6",
name: "Lisa Chen",
role: "Data Science Lead",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672737218-lpv1rhki.jpg",
rating: 5
},
{
id: "7",
name: "Michael Brown",
role: "Cloud Solutions Expert",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672738160-spbsp0n6.jpg",
rating: 5
},
{
id: "8",
name: "Sarah Anderson",
role: "Security Specialist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492693670-lj7ueobz.png",
rating: 5
} }
]} ]}
gridVariant="uniform-all-items-equal" speed={40}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground="noInvert"
/> />
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardSix <TestimonialCardSix
title="Student Success Stories" title="Student Success Stories"
description="Hear from graduates who landed their dream jobs." description="Hear from graduates who've launched their tech careers through Go Work."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground="invertDefault"
testimonials={[ testimonials={[
{ {
id: "1", id: "1",
name: "James Wilson", name: "James Wilson",
handle: "@jameswilson", handle: "@jameswilson",
testimonial: "Go Work transformed my career. Within 3 months of completing the program, I landed a job at a top tech company. The instructors were incredibly supportive.", testimonial: "Go Work transformed my career. Within 3 months of completing the program, I landed a job at a top tech company.",
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",
imageAlt: "James Wilson"
}, },
{ {
id: "2", id: "2",
name: "Lisa Chen", name: "Lisa Chen",
handle: "@lisachen_dev", handle: "@lisachen_dev",
testimonial: "The hands-on projects and real-world scenarios prepared me perfectly for the job market. Best investment I made in my career.", testimonial: "The hands-on projects and real-world scenarios prepared me perfectly for the job market. Highly recommend!",
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",
imageAlt: "Lisa Chen"
}, },
{ {
id: "3", id: "3",
name: "Michael Brown", name: "Michael Brown",
handle: "@mbrowndev", handle: "@mbrowndev",
testimonial: "Excellent curriculum and amazing mentorship. I went from zero coding experience to my first developer role in just 4 months.", testimonial: "I went from zero coding experience to my first developer role in just 4 months. Best investment in my career!",
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",
imageAlt: "Michael Brown"
}, },
{ {
id: "4", id: "4",
name: "Emma Rodriguez", name: "Emma Davis",
handle: "@emma_codes", handle: "@emmadavis_tech",
testimonial: "The career support and job placement assistance were game-changers. I'm now earning 60% more than before starting the program.", testimonial: "The mentorship and support I received was exceptional. The instructors genuinely care about your success.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672739043-xa1ack2n.jpg" imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672732968-aww7it2l.jpg",
imageAlt: "Emma Davis"
}, },
{ {
id: "5", id: "5",
name: "Alex Park", name: "Robert Johnson",
handle: "@alexpark_dev", handle: "@rjohnson_dev",
testimonial: "Professional instructors, collaborative environment, and practical skills. Go Work exceeded all my expectations.", testimonial: "Great structured curriculum with practical applications. The job placement assistance was invaluable.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672739944-7d9wdjnf.jpg" imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672733745-z17sze1s.jpg",
imageAlt: "Robert Johnson"
}, },
{ {
id: "6", id: "6",
name: "Sarah Thompson", name: "Catherine Martinez",
handle: "@sarahtech", handle: "@cmartin_codes",
testimonial: "The portfolio projects I built during the course became the foundation for my job interviews. Highly recommend Go Work to anyone serious about tech.", testimonial: "From bootcamp graduate to senior developer in 18 months. Go Work gave me the foundation to succeed.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672740987-ty1vffpp.jpg" imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672734552-1pi21ji6.jpg",
imageAlt: "Catherine Martinez"
},
{
id: "7",
name: "Andrew Lee",
handle: "@andrewlee_dev",
testimonial: "The curriculum stayed current with industry trends. I felt prepared for modern tech stack requirements.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672735551-zee5mm98.jpg",
imageAlt: "Andrew Lee"
},
{
id: "8",
name: "Jessica Wong",
handle: "@jwong_tech",
testimonial: "Outstanding community and peer support. Learning alongside other passionate students accelerated my growth.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731963-dy25hbg0.jpg",
imageAlt: "Jessica Wong"
} }
]} ]}
textboxLayout="default" speed={30}
animationType="slide-up"
useInvertedBackground="noInvert"
/> />
</div> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqBase <FaqDouble
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Find answers to common questions about our courses and enrollment." description="Get answers to common questions about our programs, admissions, and career support."
textboxLayout="default"
useInvertedBackground="noInvert"
faqs={[ faqs={[
{ {
id: "1", id: "1",
title: "Do I need prior coding experience?", title: "Do I need prior coding experience?",
content: "No, we offer courses for all skill levels from complete beginners to advanced developers. Our courses are designed to meet you where you are and help you progress." content: "No, we offer courses for all skill levels from complete beginners to advanced developers. Our Starter Program is specifically designed for those with no prior experience."
}, },
{ {
id: "2", id: "2",
title: "How long are the courses?", title: "How long are the courses?",
content: "Our bootcamp programs typically run 12-16 weeks full-time or 6-9 months part-time. Individual courses range from 4-12 weeks depending on the topic." content: "Our bootcamp programs typically run 12-16 weeks full-time or 6-9 months part-time. Specific durations depend on the program level you choose."
}, },
{ {
id: "3", id: "3",
title: "What is your job placement guarantee?", title: "What is your job placement guarantee?",
content: "Our Enterprise plan includes a job placement guarantee. If you don't land a job within 6 months after graduation, we'll refund 50% of your tuition. We have a 92% placement rate overall." content: "Our Enterprise plan includes a job placement guarantee with a 92% placement rate overall. We provide career counseling, portfolio building, and active job placement assistance."
}, },
{ {
id: "4", id: "4",
title: "Can I take courses part-time?", title: "Can I learn part-time while working?",
content: "Yes, all our courses are available in both full-time and part-time formats. Part-time options are perfect for working professionals." content: "Absolutely! We offer flexible part-time options that allow you to maintain your current job while upskilling. Most part-time programs run for 6-9 months."
}, },
{ {
id: "5", id: "5",
title: "Do you offer career support after graduation?", title: "What payment options are available?",
content: "Yes, career support is included in all plans. This includes resume review, interview preparation, portfolio guidance, and access to our job board with exclusive opportunities from partner companies." content: "We offer flexible payment plans, financing options, and scholarships for qualifying candidates. Contact our admissions team to discuss what works best for you."
}, },
{ {
id: "6", id: "6",
title: "What payment options are available?", title: "What languages and frameworks do you teach?",
content: "We accept monthly payments, full upfront payments with a 10% discount, and offer financing options through approved partners for qualified students." content: "We cover modern stacks including JavaScript, Python, React, Node.js, AWS, Docker, and more. Our curriculum is constantly updated to reflect industry demands."
} }
]} ]}
textboxLayout="default"
animationType="smooth"
useInvertedBackground="noInvert"
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm <ContactInline
title="Ready to Launch Your Tech Career?" text="Ready to launch your tech career? Get started with Go Work today."
description="Fill out the form below and our admissions team will get back to you within 24 hours with course recommendations tailored to your goals." animationType="entrance-slide"
inputs={[ inputPlaceholder="Enter your email to learn more"
{ buttonText="Get Started"
name: "fullName", useInvertedBackground="invertCard"
type: "text",
placeholder: "Full Name",
required: true
},
{
name: "email",
type: "email",
placeholder: "Email Address",
required: true
},
{
name: "phone",
type: "tel",
placeholder: "Phone Number",
required: false
},
{
name: "experience",
type: "text",
placeholder: "Current Experience Level (Beginner/Intermediate/Advanced)",
required: false
}
]}
textarea={{
name: "message",
placeholder: "Tell us about your career goals and what program interests you...",
rows: 5,
required: true
}}
buttonText="Send Inquiry"
useInvertedBackground="noInvert"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731963-dy25hbg0.jpg"
imageAlt="Professional IT training environment"
mediaPosition="right"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterSocial
logoText="Go Work"
columns={[ columns={[
{ {
title: "Courses", title: "Courses",
items: [ items: [
{ { label: "Web Development", href: "features" },
label: "Web Development", { label: "Mobile Apps", href: "features" },
href: "#features" { label: "Cloud Computing", href: "features" },
}, { label: "Data Science", href: "features" }
{
label: "Mobile Apps",
href: "#features"
},
{
label: "Cloud Computing",
href: "#features"
},
{
label: "Data Science",
href: "#features"
}
] ]
}, },
{ {
title: "Company", title: "Company",
items: [ items: [
{ { label: "About Us", href: "about" },
label: "About Us", { label: "Our Team", href: "team" },
href: "#about" { label: "Careers", href: "contact" },
}, { label: "Blog", href: "#" }
{
label: "Our Team",
href: "#team"
},
{
label: "Careers",
href: "#contact"
},
{
label: "Blog",
href: "#"
}
] ]
}, },
{ {
title: "Support", title: "Support",
items: [ items: [
{ { label: "FAQ", href: "faq" },
label: "FAQ", { label: "Contact Us", href: "contact" },
href: "#faq" { label: "Terms of Service", href: "#" },
}, { label: "Privacy Policy", href: "#" }
{
label: "Contact Us",
href: "#contact"
},
{
label: "Terms of Service",
href: "#"
},
{
label: "Privacy Policy",
href: "#"
}
] ]
} }
]} ]}