Compare commits
10 Commits
version_4
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
| 3554a0bc5a | |||
| e83405ec66 | |||
| 00427c2157 | |||
| 103774478a | |||
| ef76996dd6 | |||
| 6c760b86ce | |||
| 1b8e0d80bb | |||
| 4feefc56df | |||
| d74d35c486 | |||
| 20984665d8 |
@@ -5,12 +5,12 @@
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
--background: #000000;
|
||||
--card: #1b1b1b;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #ff0000;
|
||||
--secondary-cta: #151515;
|
||||
--accent: #303030;
|
||||
--background-accent: #303030;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--accent: #ff3333;
|
||||
--background-accent: #ff0000;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
619
src/app/page.tsx
619
src/app/page.tsx
@@ -1,430 +1,269 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal";
|
||||
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
|
||||
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||
import FeatureCardEleven from "@/components/sections/feature/FeatureCardEleven";
|
||||
import PricingCardNine from "@/components/sections/pricing/PricingCardNine";
|
||||
import TeamCardSix from "@/components/sections/team/TeamCardSix";
|
||||
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Award, TrendingUp, Users, Zap } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="dotGrid"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="outline"
|
||||
headingFontWeight="semibold"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleMinimal
|
||||
brandName="Go Work"
|
||||
button={{
|
||||
text: "Enroll Now",
|
||||
href: "#contact"
|
||||
}}
|
||||
/>
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
logoText="Go Work"
|
||||
description="Master IT skills with industry-leading courses. Start your tech career journey with expert instructors and hands-on projects."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492693670-lj7ueobz.png"
|
||||
imageAlt="Coding and programming workspace"
|
||||
frameStyle="card"
|
||||
/>
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
title="Go Work is transforming IT education by providing practical, industry-focused training that connects students with real-world opportunities."
|
||||
metrics={[
|
||||
{
|
||||
icon: Users,
|
||||
label: "Active Students",
|
||||
value: "2,500+"
|
||||
},
|
||||
{
|
||||
icon: Award,
|
||||
label: "Expert Instructors",
|
||||
value: "45+"
|
||||
},
|
||||
{
|
||||
icon: TrendingUp,
|
||||
label: "Job Placement Rate",
|
||||
value: "92%"
|
||||
},
|
||||
{
|
||||
icon: Zap,
|
||||
label: "Courses Available",
|
||||
value: "18+"
|
||||
}
|
||||
]}
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardEleven
|
||||
title="How We Train You"
|
||||
description="Our proven learning methodology takes you from basics to professional-ready in structured steps."
|
||||
tag="Learning Path"
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Requirements Analysis",
|
||||
description: "We assess your current skill level and career goals to customize your learning path. Personal mentorship begins here.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492694761-e96hadsf.jpg"
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Intensive Development",
|
||||
description: "Hands-on coding projects, real-world scenarios, and collaborative team exercises build your practical expertise.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492695669-hy749o3o.jpg"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Quality Testing",
|
||||
description: "Rigorous code reviews, debugging challenges, and quality assurance practices ensure you understand best practices.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672727126-a97a9rhj.jpg"
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Career Launch",
|
||||
description: "Portfolio building, interview prep, and job placement assistance help you land roles with top tech companies.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672728464-s6bmwda4.jpg"
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground="noInvert"
|
||||
usePrimaryButtonImage={false}
|
||||
/>
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardNine
|
||||
title="Training Packages"
|
||||
description="Choose the right package for your learning goals and schedule."
|
||||
plans={[
|
||||
{
|
||||
id: "starter",
|
||||
title: "Starter",
|
||||
price: "$499",
|
||||
period: "/month",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672729251-otls1mux.jpg",
|
||||
button: {
|
||||
text: "Get Started",
|
||||
href: "#contact"
|
||||
},
|
||||
features: [
|
||||
"5 beginner-level courses",
|
||||
"Weekly live sessions",
|
||||
"Email support",
|
||||
"Certificate of completion"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "professional",
|
||||
title: "Professional",
|
||||
price: "$999",
|
||||
period: "/month",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672730035-e2exv3ex.jpg",
|
||||
button: {
|
||||
text: "Enroll Now",
|
||||
href: "#contact"
|
||||
},
|
||||
features: [
|
||||
"15 intermediate courses",
|
||||
"Daily live sessions and office hours",
|
||||
"1-on-1 mentorship",
|
||||
"Portfolio building support",
|
||||
"Priority job board access"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "enterprise",
|
||||
title: "Enterprise",
|
||||
price: "$2,499",
|
||||
period: "/month",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731012-02y7h7no.jpg",
|
||||
button: {
|
||||
text: "Contact Sales",
|
||||
href: "#contact"
|
||||
},
|
||||
features: [
|
||||
"All Professional features",
|
||||
"Advanced specialization tracks",
|
||||
"Guaranteed job placement",
|
||||
"Corporate training customization",
|
||||
"Dedicated account manager"
|
||||
]
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardSix
|
||||
title="Meet Our Instructors"
|
||||
description="Learn from industry experts with years of real-world experience."
|
||||
members={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Alex Johnson",
|
||||
role: "Full Stack Lead",
|
||||
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"
|
||||
}
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
title="Student Success Stories"
|
||||
description="Hear from graduates who landed their dream jobs."
|
||||
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. The instructors were incredibly supportive.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672736383-37d60c7y.jpg"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Lisa Chen",
|
||||
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.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672737218-lpv1rhki.jpg"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Michael Brown",
|
||||
handle: "@mbrowndev",
|
||||
testimonial: "Excellent curriculum and amazing mentorship. I went from zero coding experience to my first developer role in just 4 months.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672738160-spbsp0n6.jpg"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Emma Rodriguez",
|
||||
handle: "@emma_codes",
|
||||
testimonial: "The career support and job placement assistance were game-changers. I'm now earning 60% more than before starting the program.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672739043-xa1ack2n.jpg"
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Alex Park",
|
||||
handle: "@alexpark_dev",
|
||||
testimonial: "Professional instructors, collaborative environment, and practical skills. Go Work exceeded all my expectations.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672739944-7d9wdjnf.jpg"
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Sarah Thompson",
|
||||
handle: "@sarahtech",
|
||||
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.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672740987-ty1vffpp.jpg"
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions about our courses and enrollment."
|
||||
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 courses are designed to meet you where you are and help you progress."
|
||||
},
|
||||
{
|
||||
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. Individual courses range from 4-12 weeks depending on the topic."
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
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."
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Can I take courses part-time?",
|
||||
content: "Yes, all our courses are available in both full-time and part-time formats. Part-time options are perfect for working professionals."
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Do you offer career support after graduation?",
|
||||
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."
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
title: "What payment options are available?",
|
||||
content: "We accept monthly payments, full upfront payments with a 10% discount, and offer financing options through approved partners for qualified students."
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="smooth"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Ready to Launch Your Tech Career?"
|
||||
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."
|
||||
inputs={[
|
||||
{
|
||||
name: "fullName",
|
||||
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 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>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
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 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>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user