2 Commits

Author SHA1 Message Date
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 394 additions and 233 deletions

View File

@@ -5,12 +5,12 @@
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #000000; --background: #000000;
--card: #1a1a1a; --card: #1b1b1b;
--foreground: #ffffff; --foreground: #ffffff;
--primary-cta: #ff0000; --primary-cta: #ff0000;
--secondary-cta: #1a1a1a; --secondary-cta: #151515;
--accent: #ff3333; --accent: #303030;
--background-accent: #ff0000; --background-accent: #303030;
/* 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,269 +1,430 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; 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() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-stagger" defaultButtonVariant="shift-hover"
defaultTextAnimation="entrance-slide" defaultTextAnimation="reveal-blur"
borderRadius="rounded" borderRadius="soft"
contentWidth="medium" contentWidth="mediumLarge"
sizing="medium" sizing="medium"
background="circleGradient" background="dotGrid"
cardStyle="glass-elevated" cardStyle="solid"
primaryButtonStyle="gradient" primaryButtonStyle="flat"
secondaryButtonStyle="glass" secondaryButtonStyle="outline"
headingFontWeight="normal" headingFontWeight="semibold"
> >
<div id="nav" data-section="nav"> <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"> <NavbarStyleMinimal
<div className="text-center"> brandName="Go Work"
<h1 className="text-6xl font-bold text-gray-900 mb-4">Go Work</h1> button={{
<p className="text-xl text-gray-700 mb-8">IT Training & Career Development Bootcamp</p> text: "Enroll Now",
<button className="bg-blue-600 text-white px-8 py-3 rounded-lg text-lg font-semibold hover:bg-blue-700 transition-colors"> href: "#contact"
Enroll Now }}
</button> />
</div>
</div>
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<div className="min-h-screen bg-white p-8 flex items-center justify-center"> <HeroLogoBillboard
<div className="text-center max-w-4xl"> logoText="Go Work"
<h2 className="text-5xl font-bold text-gray-900 mb-6">Master IT Skills</h2> description="Master IT skills with industry-leading courses. Start your tech career journey with expert instructors and hands-on projects."
<p className="text-xl text-gray-600 mb-8">Industry-leading courses with expert instructors and hands-on projects</p> imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492693670-lj7ueobz.png"
<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" /> imageAlt="Coding and programming workspace"
</div> frameStyle="card"
</div> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<div className="min-h-screen bg-gray-50 p-8 flex items-center justify-center"> <AboutMetric
<div className="text-center max-w-6xl"> title="Go Work is transforming IT education by providing practical, industry-focused training that connects students with real-world opportunities."
<h2 className="text-4xl font-bold text-gray-900 mb-8">Transforming IT Education</h2> metrics={[
<div className="grid grid-cols-1 md:grid-cols-4 gap-8"> {
<div className="bg-white p-6 rounded-lg shadow"> icon: Users,
<div className="text-3xl font-bold text-blue-600 mb-2">2,500+</div> label: "Active Students",
<div className="text-gray-700">Active Students</div> value: "2,500+"
</div> },
<div className="bg-white p-6 rounded-lg shadow"> {
<div className="text-3xl font-bold text-blue-600 mb-2">45+</div> icon: Award,
<div className="text-gray-700">Expert Instructors</div> label: "Expert Instructors",
</div> value: "45+"
<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> icon: TrendingUp,
</div> label: "Job Placement Rate",
<div className="bg-white p-6 rounded-lg shadow"> value: "92%"
<div className="text-3xl font-bold text-blue-600 mb-2">18+</div> },
<div className="text-gray-700">Courses Available</div> {
</div> icon: Zap,
</div> label: "Courses Available",
</div> value: "18+"
</div> }
]}
useInvertedBackground="noInvert"
/>
</div> </div>
<div id="features" data-section="features"> <div id="features" data-section="features">
<div className="min-h-screen bg-white p-8 flex items-center justify-center"> <FeatureCardEleven
<div className="max-w-6xl"> title="How We Train You"
<h2 className="text-4xl font-bold text-gray-900 text-center mb-12">How We Train You</h2> description="Our proven learning methodology takes you from basics to professional-ready in structured steps."
<div className="grid grid-cols-1 md:grid-cols-2 gap-8"> tag="Learning Path"
<div className="bg-gray-50 p-6 rounded-lg"> features={[
<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> id: 1,
</div> title: "Requirements Analysis",
<div className="bg-gray-50 p-6 rounded-lg"> description: "We assess your current skill level and career goals to customize your learning path. Personal mentorship begins here.",
<h3 className="text-xl font-semibold mb-4">Intensive Development</h3> imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492694761-e96hadsf.jpg"
<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"> id: 2,
<h3 className="text-xl font-semibold mb-4">Quality Testing</h3> title: "Intensive Development",
<p className="text-gray-600">Rigorous code reviews and debugging challenges ensure best practices.</p> description: "Hands-on coding projects, real-world scenarios, and collaborative team exercises build your practical expertise.",
</div> imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492695669-hy749o3o.jpg"
<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> id: 3,
</div> title: "Quality Testing",
</div> description: "Rigorous code reviews, debugging challenges, and quality assurance practices ensure you understand best practices.",
</div> imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672727126-a97a9rhj.jpg"
</div> },
{
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> </div>
<div id="pricing" data-section="pricing"> <div id="pricing" data-section="pricing">
<div className="min-h-screen bg-gray-50 p-8 flex items-center justify-center"> <PricingCardNine
<div className="max-w-6xl"> title="Training Packages"
<h2 className="text-4xl font-bold text-gray-900 text-center mb-12">Training Packages</h2> description="Choose the right package for your learning goals and schedule."
<div className="grid grid-cols-1 md:grid-cols-3 gap-8"> plans={[
<div className="bg-white p-6 rounded-lg shadow"> {
<h3 className="text-2xl font-semibold mb-4">Starter</h3> id: "starter",
<p className="text-gray-600">5 beginner-level courses, weekly live sessions, email support</p> title: "Starter",
</div> price: "$499",
<div className="bg-white p-6 rounded-lg shadow"> period: "/month",
<h3 className="text-2xl font-semibold mb-4">Professional</h3> imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672729251-otls1mux.jpg",
<p className="text-gray-600">15 intermediate courses, daily sessions, 1-on-1 mentorship</p> button: {
</div> text: "Get Started",
<div className="bg-white p-6 rounded-lg shadow"> href: "#contact"
<h3 className="text-2xl font-semibold mb-4">Enterprise</h3> },
<p className="text-gray-600">All features, guaranteed job placement, dedicated account manager</p> features: [
</div> "5 beginner-level courses",
</div> "Weekly live sessions",
</div> "Email support",
</div> "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> </div>
<div id="team" data-section="team"> <div id="team" data-section="team">
<div className="min-h-screen bg-white p-8 flex items-center justify-center"> <TeamCardSix
<div className="max-w-6xl"> title="Meet Our Instructors"
<h2 className="text-4xl font-bold text-gray-900 text-center mb-12">Meet Our Instructors</h2> description="Learn from industry experts with years of real-world experience."
<div className="grid grid-cols-1 md:grid-cols-4 gap-8"> members={[
<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" /> id: "1",
<h3 className="font-semibold">Alex Johnson</h3> name: "Alex Johnson",
<p className="text-gray-600">Full Stack Lead</p> role: "Full Stack Lead",
</div> imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672732968-aww7it2l.jpg"
<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> id: "2",
<p className="text-gray-600">Frontend Specialist</p> name: "Maria Chen",
</div> role: "Frontend Specialist",
<div className="text-center"> imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672733745-z17sze1s.jpg"
<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> id: "3",
</div> name: "David Kumar",
<div className="text-center"> role: "DevOps Engineer",
<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" /> imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672734552-1pi21ji6.jpg"
<h3 className="font-semibold">Sophie Martin</h3> },
<p className="text-gray-600">UI/UX Designer</p> {
</div> id: "4",
</div> name: "Sophie Martin",
</div> role: "UI/UX Designer",
</div> 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> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<div className="min-h-screen bg-gray-50 p-8 flex items-center justify-center"> <TestimonialCardSix
<div className="max-w-6xl"> title="Student Success Stories"
<h2 className="text-4xl font-bold text-gray-900 text-center mb-12">Student Success Stories</h2> description="Hear from graduates who landed their dream jobs."
<div className="grid grid-cols-1 md:grid-cols-3 gap-8"> testimonials={[
<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> id: "1",
<div className="flex items-center"> name: "James Wilson",
<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" /> handle: "@jameswilson",
<div> 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.",
<div className="font-semibold">James Wilson</div> imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672736383-37d60c7y.jpg"
<div className="text-sm text-gray-500">@jameswilson</div> },
</div> {
</div> id: "2",
</div> name: "Lisa Chen",
<div className="bg-white p-6 rounded-lg shadow"> handle: "@lisachen_dev",
<p className="text-gray-600 mb-4">"The hands-on projects and real-world scenarios prepared me perfectly for the job market."</p> testimonial: "The hands-on projects and real-world scenarios prepared me perfectly for the job market. Best investment I made in my career.",
<div className="flex items-center"> imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672737218-lpv1rhki.jpg"
<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> id: "3",
<div className="text-sm text-gray-500">@lisachen_dev</div> name: "Michael Brown",
</div> handle: "@mbrowndev",
</div> testimonial: "Excellent curriculum and amazing mentorship. I went from zero coding experience to my first developer role in just 4 months.",
</div> imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672738160-spbsp0n6.jpg"
<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"> id: "4",
<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" /> name: "Emma Rodriguez",
<div> handle: "@emma_codes",
<div className="font-semibold">Michael Brown</div> testimonial: "The career support and job placement assistance were game-changers. I'm now earning 60% more than before starting the program.",
<div className="text-sm text-gray-500">@mbrowndev</div> imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672739043-xa1ack2n.jpg"
</div> },
</div> {
</div> id: "5",
</div> name: "Alex Park",
</div> handle: "@alexpark_dev",
</div> 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> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<div className="min-h-screen bg-white p-8 flex items-center justify-center"> <FaqBase
<div className="max-w-4xl"> title="Frequently Asked Questions"
<h2 className="text-4xl font-bold text-gray-900 text-center mb-12">Frequently Asked Questions</h2> description="Find answers to common questions about our courses and enrollment."
<div className="space-y-6"> faqs={[
<div className="bg-gray-50 p-6 rounded-lg"> {
<h3 className="font-semibold mb-2">Do I need prior coding experience?</h3> id: "1",
<p className="text-gray-600">No, we offer courses for all skill levels from complete beginners to advanced developers.</p> title: "Do I need prior coding experience?",
</div> 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."
<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> id: "2",
</div> title: "How long are the courses?",
<div className="bg-gray-50 p-6 rounded-lg"> 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."
<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> id: "3",
</div> title: "What is your job placement guarantee?",
</div> 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."
</div> },
{
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> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<div className="min-h-screen bg-gray-50 p-8 flex items-center justify-center"> <ContactSplitForm
<div className="max-w-6xl grid grid-cols-1 lg:grid-cols-2 gap-12"> title="Ready to Launch Your Tech Career?"
<div> 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."
<h2 className="text-4xl font-bold text-gray-900 mb-6">Ready to Launch Your Tech Career?</h2> inputs={[
<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"> name: "fullName",
<input type="text" placeholder="Full Name" className="w-full p-3 border border-gray-300 rounded-lg" /> type: "text",
<input type="email" placeholder="Email Address" className="w-full p-3 border border-gray-300 rounded-lg" /> placeholder: "Full Name",
<input type="tel" placeholder="Phone Number" className="w-full p-3 border border-gray-300 rounded-lg" /> required: true
<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 name: "email",
</button> type: "email",
</form> placeholder: "Email Address",
</div> required: true
<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> name: "phone",
</div> type: "tel",
</div> 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">
<div className="bg-gray-900 text-white p-8"> <FooterBaseReveal
<div className="max-w-6xl mx-auto"> columns={[
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 mb-8"> {
<div> title: "Courses",
<h3 className="font-semibold mb-4">Courses</h3> items: [
<ul className="space-y-2 text-gray-300"> {
<li><a href="#features" className="hover:text-white">Web Development</a></li> label: "Web Development",
<li><a href="#features" className="hover:text-white">Mobile Apps</a></li> href: "#features"
<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> label: "Mobile Apps",
</div> href: "#features"
<div> },
<h3 className="font-semibold mb-4">Company</h3> {
<ul className="space-y-2 text-gray-300"> label: "Cloud Computing",
<li><a href="#about" className="hover:text-white">About Us</a></li> href: "#features"
<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> label: "Data Science",
</ul> href: "#features"
</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> title: "Company",
<li><a href="#contact" className="hover:text-white">Contact Us</a></li> items: [
<li><a href="#" className="hover:text-white">Terms of Service</a></li> {
<li><a href="#" className="hover:text-white">Privacy Policy</a></li> label: "About Us",
</ul> href: "#about"
</div> },
</div> {
<div className="border-t border-gray-700 pt-8 text-center text-gray-400"> label: "Our Team",
<p>© 2025 Go Work | IT Training Academy</p> href: "#team"
</div> },
</div> {
</div> 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> </div>
</ThemeProvider> </ThemeProvider>
); );