Compare commits
1 Commits
version_8
...
version_11
| Author | SHA1 | Date | |
|---|---|---|---|
| 82102bfc62 |
585
src/app/page.tsx
585
src/app/page.tsx
@@ -1,6 +1,17 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
||||
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||
import TeamCardFour from "@/components/sections/team/TeamCardFour";
|
||||
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import ContactInline from "@/components/sections/contact/ContactInline";
|
||||
import FooterSocial from "@/components/sections/footer/FooterSocial";
|
||||
import { Quote, Users } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -17,253 +28,369 @@ export default function LandingPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<div className="min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100 p-8 flex items-center justify-center">
|
||||
<div className="text-center">
|
||||
<h1 className="text-6xl font-bold text-gray-900 mb-4">Go Work</h1>
|
||||
<p className="text-xl text-gray-700 mb-8">IT Training & Career Development Bootcamp</p>
|
||||
<button className="bg-blue-600 text-white px-8 py-3 rounded-lg text-lg font-semibold hover:bg-blue-700 transition-colors">
|
||||
Enroll Now
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<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"
|
||||
button={{
|
||||
text: "Enroll Now",
|
||||
href: "contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<div className="min-h-screen bg-white p-8 flex items-center justify-center">
|
||||
<div className="text-center max-w-4xl">
|
||||
<h2 className="text-5xl font-bold text-gray-900 mb-6">Master IT Skills</h2>
|
||||
<p className="text-xl text-gray-600 mb-8">Industry-leading courses with expert instructors and hands-on projects</p>
|
||||
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492693670-lj7ueobz.png" alt="Coding and programming workspace" className="mx-auto rounded-lg shadow-lg" />
|
||||
</div>
|
||||
</div>
|
||||
<HeroOverlay
|
||||
title="Master IT Skills with Industry-Leading Training"
|
||||
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"
|
||||
imageAlt="Coding and programming workspace"
|
||||
textPosition="center"
|
||||
showBlur={true}
|
||||
showDimOverlay={false}
|
||||
buttons={[
|
||||
{ text: "Start Learning", href: "contact" },
|
||||
{ text: "Explore Courses", href: "features" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<div className="min-h-screen bg-gray-50 p-8 flex items-center justify-center">
|
||||
<div className="text-center max-w-6xl">
|
||||
<h2 className="text-4xl font-bold text-gray-900 mb-8">Transforming IT Education</h2>
|
||||
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
|
||||
<div className="bg-white p-6 rounded-lg shadow">
|
||||
<div className="text-3xl font-bold text-blue-600 mb-2">2,500+</div>
|
||||
<div className="text-gray-700">Active Students</div>
|
||||
</div>
|
||||
<div className="bg-white p-6 rounded-lg shadow">
|
||||
<div className="text-3xl font-bold text-blue-600 mb-2">45+</div>
|
||||
<div className="text-gray-700">Expert Instructors</div>
|
||||
</div>
|
||||
<div className="bg-white p-6 rounded-lg shadow">
|
||||
<div className="text-3xl font-bold text-blue-600 mb-2">92%</div>
|
||||
<div className="text-gray-700">Job Placement Rate</div>
|
||||
</div>
|
||||
<div className="bg-white p-6 rounded-lg shadow">
|
||||
<div className="text-3xl font-bold text-blue-600 mb-2">18+</div>
|
||||
<div className="text-gray-700">Courses Available</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<TestimonialAboutCard
|
||||
tag="Our Impact"
|
||||
title="Transforming careers and building the next generation of IT professionals."
|
||||
description="2,500+ Active Students"
|
||||
subdescription="45+ Expert Instructors"
|
||||
icon={Quote}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731963-dy25hbg0.jpg"
|
||||
imageAlt="IT Training Environment"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<div className="min-h-screen bg-white p-8 flex items-center justify-center">
|
||||
<div className="max-w-6xl">
|
||||
<h2 className="text-4xl font-bold text-gray-900 text-center mb-12">How We Train You</h2>
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-8">
|
||||
<div className="bg-gray-50 p-6 rounded-lg">
|
||||
<h3 className="text-xl font-semibold mb-4">Requirements Analysis</h3>
|
||||
<p className="text-gray-600">We assess your current skill level and career goals to customize your learning path.</p>
|
||||
</div>
|
||||
<div className="bg-gray-50 p-6 rounded-lg">
|
||||
<h3 className="text-xl font-semibold mb-4">Intensive Development</h3>
|
||||
<p className="text-gray-600">Hands-on coding projects and real-world scenarios build your practical expertise.</p>
|
||||
</div>
|
||||
<div className="bg-gray-50 p-6 rounded-lg">
|
||||
<h3 className="text-xl font-semibold mb-4">Quality Testing</h3>
|
||||
<p className="text-gray-600">Rigorous code reviews and debugging challenges ensure best practices.</p>
|
||||
</div>
|
||||
<div className="bg-gray-50 p-6 rounded-lg">
|
||||
<h3 className="text-xl font-semibold mb-4">Career Launch</h3>
|
||||
<p className="text-gray-600">Portfolio building and job placement assistance help you land roles.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<FeatureCardSixteen
|
||||
title="Why Choose Go Work"
|
||||
description="Our comprehensive approach ensures you gain both theoretical knowledge and practical skills needed in today's job market."
|
||||
negativeCard={{
|
||||
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">
|
||||
<div className="min-h-screen bg-gray-50 p-8 flex items-center justify-center">
|
||||
<div className="max-w-6xl">
|
||||
<h2 className="text-4xl font-bold text-gray-900 text-center mb-12">Training Packages</h2>
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
<div className="bg-white p-6 rounded-lg shadow">
|
||||
<h3 className="text-2xl font-semibold mb-4">Starter</h3>
|
||||
<p className="text-gray-600">5 beginner-level courses, weekly live sessions, email support</p>
|
||||
</div>
|
||||
<div className="bg-white p-6 rounded-lg shadow">
|
||||
<h3 className="text-2xl font-semibold mb-4">Professional</h3>
|
||||
<p className="text-gray-600">15 intermediate courses, daily sessions, 1-on-1 mentorship</p>
|
||||
</div>
|
||||
<div className="bg-white p-6 rounded-lg shadow">
|
||||
<h3 className="text-2xl font-semibold mb-4">Enterprise</h3>
|
||||
<p className="text-gray-600">All features, guaranteed job placement, dedicated account manager</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<PricingCardThree
|
||||
title="Training Packages"
|
||||
description="Choose the plan that fits your learning goals and career aspirations."
|
||||
plans={[
|
||||
{
|
||||
id: "1",
|
||||
price: "$2,999",
|
||||
name: "Starter Program",
|
||||
buttons: [
|
||||
{ text: "Get Started", href: "contact" },
|
||||
{ text: "Learn More", onClick: () => {} }
|
||||
],
|
||||
features: [
|
||||
"5 beginner-level courses",
|
||||
"Weekly live sessions",
|
||||
"Email support",
|
||||
"Community access"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
badge: "Most Popular",
|
||||
price: "$7,999",
|
||||
name: "Professional Program",
|
||||
buttons: [
|
||||
{ text: "Get Started", href: "contact" },
|
||||
{ text: "Learn More", onClick: () => {} }
|
||||
],
|
||||
features: [
|
||||
"15 intermediate courses",
|
||||
"Daily live sessions",
|
||||
"1-on-1 mentorship",
|
||||
"Portfolio building",
|
||||
"Priority support"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
price: "$14,999",
|
||||
name: "Enterprise Program",
|
||||
buttons: [
|
||||
{ text: "Get Started", href: "contact" },
|
||||
{ text: "Learn More", onClick: () => {} }
|
||||
],
|
||||
features: [
|
||||
"All intermediate courses",
|
||||
"Advanced specializations",
|
||||
"Guaranteed job placement",
|
||||
"Dedicated account manager",
|
||||
"Career counseling",
|
||||
"Lifetime updates"
|
||||
]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="invertDefault"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<div className="min-h-screen bg-white p-8 flex items-center justify-center">
|
||||
<div className="max-w-6xl">
|
||||
<h2 className="text-4xl font-bold text-gray-900 text-center mb-12">Meet Our Instructors</h2>
|
||||
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
|
||||
<div className="text-center">
|
||||
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672732968-aww7it2l.jpg" alt="Alex Johnson" className="w-32 h-32 rounded-full mx-auto mb-4 object-cover" />
|
||||
<h3 className="font-semibold">Alex Johnson</h3>
|
||||
<p className="text-gray-600">Full Stack Lead</p>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672733745-z17sze1s.jpg" alt="Maria Chen" className="w-32 h-32 rounded-full mx-auto mb-4 object-cover" />
|
||||
<h3 className="font-semibold">Maria Chen</h3>
|
||||
<p className="text-gray-600">Frontend Specialist</p>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672734552-1pi21ji6.jpg" alt="David Kumar" className="w-32 h-32 rounded-full mx-auto mb-4 object-cover" />
|
||||
<h3 className="font-semibold">David Kumar</h3>
|
||||
<p className="text-gray-600">DevOps Engineer</p>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672735551-zee5mm98.jpg" alt="Sophie Martin" className="w-32 h-32 rounded-full mx-auto mb-4 object-cover" />
|
||||
<h3 className="font-semibold">Sophie Martin</h3>
|
||||
<p className="text-gray-600">UI/UX Designer</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<TeamCardFour
|
||||
title="Meet Our Expert Instructors"
|
||||
description="Learn from industry professionals with years of real-world experience."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground="noInvert"
|
||||
tag="Our Team"
|
||||
tagIcon={Users}
|
||||
team={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Alex Johnson",
|
||||
role: "Full Stack Developer",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672732968-aww7it2l.jpg"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Maria Chen",
|
||||
role: "Frontend Specialist",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672733745-z17sze1s.jpg"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "David Kumar",
|
||||
role: "DevOps Engineer",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672734552-1pi21ji6.jpg"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Sophie Martin",
|
||||
role: "UI/UX Designer",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672735551-zee5mm98.jpg"
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "James Wilson",
|
||||
role: "Backend Architect",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672736383-37d60c7y.jpg"
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Lisa Chen",
|
||||
role: "Data Science Lead",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672737218-lpv1rhki.jpg"
|
||||
},
|
||||
{
|
||||
id: "7",
|
||||
name: "Michael Brown",
|
||||
role: "Cloud Solutions Expert",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672738160-spbsp0n6.jpg"
|
||||
},
|
||||
{
|
||||
id: "8",
|
||||
name: "Sarah Anderson",
|
||||
role: "Security Specialist",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492693670-lj7ueobz.png"
|
||||
}
|
||||
]}
|
||||
speed={40}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<div className="min-h-screen bg-gray-50 p-8 flex items-center justify-center">
|
||||
<div className="max-w-6xl">
|
||||
<h2 className="text-4xl font-bold text-gray-900 text-center mb-12">Student Success Stories</h2>
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
<div className="bg-white p-6 rounded-lg shadow">
|
||||
<p className="text-gray-600 mb-4">"Go Work transformed my career. Within 3 months of completing the program, I landed a job at a top tech company."</p>
|
||||
<div className="flex items-center">
|
||||
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672736383-37d60c7y.jpg" alt="James Wilson" className="w-10 h-10 rounded-full mr-3 object-cover" />
|
||||
<div>
|
||||
<div className="font-semibold">James Wilson</div>
|
||||
<div className="text-sm text-gray-500">@jameswilson</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="bg-white p-6 rounded-lg shadow">
|
||||
<p className="text-gray-600 mb-4">"The hands-on projects and real-world scenarios prepared me perfectly for the job market."</p>
|
||||
<div className="flex items-center">
|
||||
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672737218-lpv1rhki.jpg" alt="Lisa Chen" className="w-10 h-10 rounded-full mr-3 object-cover" />
|
||||
<div>
|
||||
<div className="font-semibold">Lisa Chen</div>
|
||||
<div className="text-sm text-gray-500">@lisachen_dev</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="bg-white p-6 rounded-lg shadow">
|
||||
<p className="text-gray-600 mb-4">"I went from zero coding experience to my first developer role in just 4 months."</p>
|
||||
<div className="flex items-center">
|
||||
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672738160-spbsp0n6.jpg" alt="Michael Brown" className="w-10 h-10 rounded-full mr-3 object-cover" />
|
||||
<div>
|
||||
<div className="font-semibold">Michael Brown</div>
|
||||
<div className="text-sm text-gray-500">@mbrowndev</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<TestimonialCardSix
|
||||
title="Student Success Stories"
|
||||
description="Hear from graduates who've launched their tech careers through Go Work."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground="invertDefault"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "James Wilson",
|
||||
handle: "@jameswilson",
|
||||
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",
|
||||
imageAlt: "James Wilson"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Lisa Chen",
|
||||
handle: "@lisachen_dev",
|
||||
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",
|
||||
imageAlt: "Lisa Chen"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Michael Brown",
|
||||
handle: "@mbrowndev",
|
||||
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",
|
||||
imageAlt: "Michael Brown"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Emma Davis",
|
||||
handle: "@emmadavis_tech",
|
||||
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-1766672732968-aww7it2l.jpg",
|
||||
imageAlt: "Emma Davis"
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Robert Johnson",
|
||||
handle: "@rjohnson_dev",
|
||||
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-1766672733745-z17sze1s.jpg",
|
||||
imageAlt: "Robert Johnson"
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Catherine Martinez",
|
||||
handle: "@cmartin_codes",
|
||||
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-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"
|
||||
}
|
||||
]}
|
||||
speed={30}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<div className="min-h-screen bg-white p-8 flex items-center justify-center">
|
||||
<div className="max-w-4xl">
|
||||
<h2 className="text-4xl font-bold text-gray-900 text-center mb-12">Frequently Asked Questions</h2>
|
||||
<div className="space-y-6">
|
||||
<div className="bg-gray-50 p-6 rounded-lg">
|
||||
<h3 className="font-semibold mb-2">Do I need prior coding experience?</h3>
|
||||
<p className="text-gray-600">No, we offer courses for all skill levels from complete beginners to advanced developers.</p>
|
||||
</div>
|
||||
<div className="bg-gray-50 p-6 rounded-lg">
|
||||
<h3 className="font-semibold mb-2">How long are the courses?</h3>
|
||||
<p className="text-gray-600">Our bootcamp programs typically run 12-16 weeks full-time or 6-9 months part-time.</p>
|
||||
</div>
|
||||
<div className="bg-gray-50 p-6 rounded-lg">
|
||||
<h3 className="font-semibold mb-2">What is your job placement guarantee?</h3>
|
||||
<p className="text-gray-600">Our Enterprise plan includes a job placement guarantee with a 92% placement rate overall.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<FaqDouble
|
||||
title="Frequently Asked Questions"
|
||||
description="Get answers to common questions about our programs, admissions, and career support."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Do I need prior coding experience?",
|
||||
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",
|
||||
title: "How long are the courses?",
|
||||
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",
|
||||
title: "What is your job placement guarantee?",
|
||||
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",
|
||||
title: "Can I learn part-time while working?",
|
||||
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",
|
||||
title: "What payment options are available?",
|
||||
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",
|
||||
title: "What languages and frameworks do you teach?",
|
||||
content: "We cover modern stacks including JavaScript, Python, React, Node.js, AWS, Docker, and more. Our curriculum is constantly updated to reflect industry demands."
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<div className="min-h-screen bg-gray-50 p-8 flex items-center justify-center">
|
||||
<div className="max-w-6xl grid grid-cols-1 lg:grid-cols-2 gap-12">
|
||||
<div>
|
||||
<h2 className="text-4xl font-bold text-gray-900 mb-6">Ready to Launch Your Tech Career?</h2>
|
||||
<p className="text-gray-600 mb-8">Fill out the form below and our admissions team will get back to you within 24 hours.</p>
|
||||
<form className="space-y-4">
|
||||
<input type="text" placeholder="Full Name" className="w-full p-3 border border-gray-300 rounded-lg" />
|
||||
<input type="email" placeholder="Email Address" className="w-full p-3 border border-gray-300 rounded-lg" />
|
||||
<input type="tel" placeholder="Phone Number" className="w-full p-3 border border-gray-300 rounded-lg" />
|
||||
<textarea placeholder="Tell us about your career goals..." rows={5} className="w-full p-3 border border-gray-300 rounded-lg"></textarea>
|
||||
<button type="submit" className="w-full bg-blue-600 text-white py-3 rounded-lg font-semibold hover:bg-blue-700 transition-colors">
|
||||
Send Inquiry
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
<div>
|
||||
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731963-dy25hbg0.jpg" alt="Professional IT training environment" className="w-full h-full object-cover rounded-lg" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<ContactInline
|
||||
text="Ready to launch your tech career? Get started with Go Work today."
|
||||
animationType="entrance-slide"
|
||||
inputPlaceholder="Enter your email to learn more"
|
||||
buttonText="Get Started"
|
||||
useInvertedBackground="invertCard"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<div className="bg-gray-900 text-white p-8">
|
||||
<div className="max-w-6xl mx-auto">
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 mb-8">
|
||||
<div>
|
||||
<h3 className="font-semibold mb-4">Courses</h3>
|
||||
<ul className="space-y-2 text-gray-300">
|
||||
<li><a href="#features" className="hover:text-white">Web Development</a></li>
|
||||
<li><a href="#features" className="hover:text-white">Mobile Apps</a></li>
|
||||
<li><a href="#features" className="hover:text-white">Cloud Computing</a></li>
|
||||
<li><a href="#features" className="hover:text-white">Data Science</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="font-semibold mb-4">Company</h3>
|
||||
<ul className="space-y-2 text-gray-300">
|
||||
<li><a href="#about" className="hover:text-white">About Us</a></li>
|
||||
<li><a href="#team" className="hover:text-white">Our Team</a></li>
|
||||
<li><a href="#contact" className="hover:text-white">Careers</a></li>
|
||||
<li><a href="#" className="hover:text-white">Blog</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="font-semibold mb-4">Support</h3>
|
||||
<ul className="space-y-2 text-gray-300">
|
||||
<li><a href="#faq" className="hover:text-white">FAQ</a></li>
|
||||
<li><a href="#contact" className="hover:text-white">Contact Us</a></li>
|
||||
<li><a href="#" className="hover:text-white">Terms of Service</a></li>
|
||||
<li><a href="#" className="hover:text-white">Privacy Policy</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div className="border-t border-gray-700 pt-8 text-center text-gray-400">
|
||||
<p>© 2025 Go Work | IT Training Academy</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<FooterSocial
|
||||
logoText="Go Work"
|
||||
columns={[
|
||||
{
|
||||
title: "Courses",
|
||||
items: [
|
||||
{ label: "Web Development", href: "features" },
|
||||
{ label: "Mobile Apps", href: "features" },
|
||||
{ label: "Cloud Computing", href: "features" },
|
||||
{ label: "Data Science", href: "features" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About Us", href: "about" },
|
||||
{ label: "Our Team", href: "team" },
|
||||
{ label: "Careers", href: "contact" },
|
||||
{ label: "Blog", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{ label: "FAQ", href: "faq" },
|
||||
{ label: "Contact Us", href: "contact" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Privacy Policy", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Go Work | IT Training Academy"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user