Merge version_2_1780589217720 into main #1

Merged
bender merged 1 commits from version_2_1780589217720 into main 2026-06-04 16:09:09 +00:00
10 changed files with 353 additions and 256 deletions

View File

@@ -1,262 +1,30 @@
import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay';
import ContactCta from '@/components/sections/contact/ContactCta';
import FeaturesAlternatingSplit from '@/components/sections/features/FeaturesAlternatingSplit';
import HeroBrand from '@/components/sections/hero/HeroBrand';
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
import PricingSimpleCards from '@/components/sections/pricing/PricingSimpleCards';
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
import TeamStackedCards from '@/components/sections/team/TeamStackedCards';
import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
// files directly; this shell only fixes render order.
export default function HomePage() {
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import ProgramsSection from './HomePage/sections/Programs';
import MetricsSection from './HomePage/sections/Metrics';
import TeamSection from './HomePage/sections/Team';
import TestimonialsSection from './HomePage/sections/Testimonials';
import PricingSection from './HomePage/sections/Pricing';
import PartnersSection from './HomePage/sections/Partners';
import ContactSection from './HomePage/sections/Contact';
export default function HomePage(): React.JSX.Element {
return (
<>
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBrand
brand="Launch Your Tech Career in Months"
description="Industry-recognized certifications. Hands-on training. Real job outcomes. Start with expert instructors who work in the field."
primaryButton={{
text: "Explore Programs",
href: "#programs",
}}
secondaryButton={{
text: "Speak to an Advisor",
href: "#contact",
}}
imageSrc="https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/professional-clean-image-of-a-diverse-gr-1780588509984-cf47c070.png"
/>
</SectionErrorBoundary>
</div>
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutMediaOverlay
tag="About Us"
title="Your Path to a Thriving Tech Career"
description="At IT Academy, we transform ambitious individuals into skilled tech professionals. Our programs are designed for career-switchers and those seeking to upskill, focusing on practical, in-demand skills and unparalleled job placement support. With expert instructors and flexible learning, your tech future starts here."
primaryButton={{
text: "Our Mission",
href: "#",
}}
secondaryButton={{
text: "Why Choose Us?",
href: "#",
}}
imageSrc="https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/an-inspiring-shot-of-a-modern-it-academy-1780588512513-f59f444b.png"
/>
</SectionErrorBoundary>
</div>
<div id="programs" data-section="programs">
<SectionErrorBoundary name="programs">
<FeaturesAlternatingSplit
tag="Our Programs"
title="Build Real-World Tech Skills"
description="Dive into high-demand fields with our expertly crafted courses. Each program emphasizes hands-on training, industry-relevant tools, and certifications that open doors."
items={[
{
title: "Cloud Computing Mastery",
description: "Become proficient in AWS, Azure, or Google Cloud. Learn infrastructure, deployment, and management to build scalable cloud solutions.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/a-person-intently-focusing-on-a-computer-1780588508689-e7b664ab.jpg",
},
{
title: "Cybersecurity Specialist",
description: "Protect digital assets and networks from threats. Master ethical hacking, threat detection, and incident response with real-world scenarios.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/a-group-of-diverse-students-collaboratin-1780588506647-df991968.png",
},
{
title: "Full-Stack Web Development",
description: "From front-end aesthetics to back-end logic, learn to build robust web applications using the latest frameworks and best practices.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/a-conceptual-image-representing-career-p-1780588510825-e39ec2ee.png",
},
]}
/>
</SectionErrorBoundary>
</div>
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsSimpleCards
tag="Our Impact"
title="Proven Success in Tech Careers"
description="Our commitment extends beyond the classroom. We measure our success by your career achievements."
metrics={[
{
value: "90%+",
description: "Job Placement Rate within 6 months of graduation.",
},
{
value: "Top 15%",
description: "Alumni salary growth compared to national averages.",
},
{
value: "500+",
description: "Graduates currently employed in leading tech companies.",
},
]}
/>
</SectionErrorBoundary>
</div>
<div id="team" data-section="team">
<SectionErrorBoundary name="team">
<TeamStackedCards
tag="Our Mentors"
title="Learn From Industry Experts"
description="Our instructors are not just teachers; they are active professionals in their fields, bringing real-world insights and connections directly into your learning experience."
members={[
{
name: "Dr. Alex Sharma",
role: "Lead Cloud Architect (AWS)",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/portrait-of-a-seasoned-male-tech-instruc-1780588506216-e111d3e7.jpg",
},
{
name: "Sarah Chen",
role: "Senior Cybersecurity Analyst",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/portrait-of-an-engaging-female-tech-inst-1780588506180-163bd9ac.png",
},
{
name: "Michael 'Mike' Jones",
role: "Full-Stack Development Lead",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/portrait-of-a-diverse-tech-instructor-la-1780588505941-5bc4472b.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialColumnMarqueeCards
tag="Success Stories"
title="What Our Alumni Say"
description="Hear directly from our graduates who have successfully launched and advanced their careers in the tech industry."
testimonials={[
{
name: "Aisha Khan",
role: "Cloud Engineer",
quote: "IT Academy gave me the practical skills and confidence to pivot my career. The instructors were phenomenal, always sharing real-world advice.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/headshot-of-a-smiling-young-professional-1780588507884-93d50dc8.png",
},
{
name: "Ben Carter",
role: "Junior Cyber Analyst",
quote: "The cybersecurity program was intense but incredibly rewarding. I landed my dream job just three months after graduating!",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/headshot-of-a-professional-early-30s-loo-1780588505982-e0d6e3ed.png",
},
{
name: "Chloe Davies",
role: "Web Developer",
quote: "I started with zero coding experience. Now, I'm building complex applications. The hands-on projects were key to my learning.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/headshot-of-a-confident-individual-late--1780588508232-99aa37f6.png",
},
{
name: "David Lee",
role: "Data Scientist",
quote: "Flexible scheduling allowed me to study while working. The career support was invaluable for my job search.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/headshot-of-an-enthusiastic-individual-m-1780588506300-fa9d7371.jpg",
},
{
name: "Emily Rodriguez",
role: "DevOps Specialist",
quote: "IT Academy's curriculum is truly industry-aligned. I felt fully prepared for my role, thanks to their in-depth training.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/headshot-of-a-content-professional-early-1780588506470-79e69658.jpg",
},
{
name: "Frank White",
role: "Network Administrator",
quote: "The certification prep was excellent. I passed my exams with flying colors and immediately saw a boost in my career prospects.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/headshot-of-a-determined-and-successful--1780588506131-994afff6.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
<div id="pricing" data-section="pricing">
<SectionErrorBoundary name="pricing">
<PricingSimpleCards
tag="Transparent Pricing"
title="Invest in Your Future"
description="Choose a program that fits your budget and career goals. No hidden fees, just clear pathways to success."
plans={[
{
tag: "Beginner",
price: "$2,500",
description: "Ideal for foundational skills.",
features: [
"Access to core modules",
"Online learning portal",
"Community support forum",
"Career preparation workshops",
],
},
{
tag: "Professional",
price: "$4,800",
description: "Comprehensive career development.",
features: [
"All Beginner features",
"Advanced specialization tracks",
"One-on-one mentor sessions",
"Certification exam vouchers",
],
},
{
tag: "Executive",
price: "$7,200",
description: "Accelerated path to leadership.",
features: [
"All Professional features",
"Executive coaching program",
"Guaranteed internship placement",
"Direct employer introductions",
],
},
]}
/>
</SectionErrorBoundary>
</div>
<div id="partners" data-section="partners">
<SectionErrorBoundary name="partners">
<SocialProofMarquee
tag="Trusted By"
title="Our Valued Employer Network"
description="We partner with leading tech companies and innovative startups to ensure our curriculum is relevant and our graduates find opportunities."
names={[
"Tech Solutions Inc.",
"Global Innovations",
"Digital Dynamics",
"Future Systems Corp.",
"NextGen Labs",
"Quantum Leap Tech",
"Synergy IT",
"Vertex Analytics",
"Pioneer Software",
]}
/>
</SectionErrorBoundary>
</div>
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Get Started"
text="Ready to Launch Your Tech Career?"
primaryButton={{
text: "Apply Now",
href: "#",
}}
secondaryButton={{
text: "Speak to an Advisor",
href: "#",
}}
/>
</SectionErrorBoundary>
</div>
<HeroSection />
<AboutSection />
<ProgramsSection />
<MetricsSection />
<TeamSection />
<TestimonialsSection />
<PricingSection />
<PartnersSection />
<ContactSection />
</>
);
}

View File

@@ -0,0 +1,29 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "about" section.
import React from 'react';
import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function AboutSection(): React.JSX.Element {
return (
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutMediaOverlay
tag="About Us"
title="Your Path to a Thriving Tech Career"
description="At IT Academy, we transform ambitious individuals into skilled tech professionals. Our programs are designed for career-switchers and those seeking to upskill, focusing on practical, in-demand skills and unparalleled job placement support. With expert instructors and flexible learning, your tech future starts here."
primaryButton={{
text: "Our Mission",
href: "#",
}}
secondaryButton={{
text: "Why Choose Us?",
href: "#",
}}
imageSrc="https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/an-inspiring-shot-of-a-modern-it-academy-1780588512513-f59f444b.png"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,20 @@
// Created by add_section_from_catalog (ContactSplitForm).
import React from 'react';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
export default function ContactSection(): React.JSX.Element {
return (
<div data-webild-section="contact" id="contact">
<ContactSplitForm
buttonText="Send Message"
imageSrc="https://images.unsplash.com/photo-1573164713988-8665fc963095?auto=format&fit=crop&q=80"
title="Get in Touch"
textarea={{"required":true,"placeholder":"How can we help you?","name":"message","rows":4}}
description="Fill out the form below and our admissions team will get back to you shortly."
inputs={[{"required":true,"placeholder":"Your Name","name":"name","type":"text"},{"required":true,"placeholder":"Your Email","name":"email","type":"email"},{"required":true,"placeholder":"Inquiry Type (e.g., Admissions, Corporate Training)","name":"inquiry_type","type":"text"}]}
tag="Contact Us"
/>
</div>
);
}

View File

@@ -0,0 +1,28 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "hero" section.
import React from 'react';
import HeroBrand from '@/components/sections/hero/HeroBrand';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HeroSection(): React.JSX.Element {
return (
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBrand
brand="Launch Your Tech Career in Months"
description="Industry-recognized certifications. Hands-on training. Real job outcomes. Start with expert instructors who work in the field."
primaryButton={{
text: "Explore Programs",
href: "#programs",
}}
secondaryButton={{
text: "Speak to an Advisor",
href: "#contact",
}}
imageSrc="https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/professional-clean-image-of-a-diverse-gr-1780588509984-cf47c070.png"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,34 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "metrics" section.
import React from 'react';
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function MetricsSection(): React.JSX.Element {
return (
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsSimpleCards
tag="Our Impact"
title="Proven Success in Tech Careers"
description="Our commitment extends beyond the classroom. We measure our success by your career achievements."
metrics={[
{
value: "90%+",
description: "Job Placement Rate within 6 months of graduation.",
},
{
value: "Top 15%",
description: "Alumni salary growth compared to national averages.",
},
{
value: "500+",
description: "Graduates currently employed in leading tech companies.",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,31 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "partners" section.
import React from 'react';
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function PartnersSection(): React.JSX.Element {
return (
<div id="partners" data-section="partners">
<SectionErrorBoundary name="partners">
<SocialProofMarquee
tag="Trusted By"
title="Our Valued Employer Network"
description="We partner with leading tech companies and innovative startups to ensure our curriculum is relevant and our graduates find opportunities."
names={[
"Tech Solutions Inc.",
"Global Innovations",
"Digital Dynamics",
"Future Systems Corp.",
"NextGen Labs",
"Quantum Leap Tech",
"Synergy IT",
"Vertex Analytics",
"Pioneer Software",
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,55 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "pricing" section.
import React from 'react';
import PricingSimpleCards from '@/components/sections/pricing/PricingSimpleCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function PricingSection(): React.JSX.Element {
return (
<div id="pricing" data-section="pricing">
<SectionErrorBoundary name="pricing">
<PricingSimpleCards
tag="Transparent Pricing"
title="Invest in Your Future"
description="Choose a program that fits your budget and career goals. No hidden fees, just clear pathways to success."
plans={[
{
tag: "Beginner",
price: "$2,500",
description: "Ideal for foundational skills.",
features: [
"Access to core modules",
"Online learning portal",
"Community support forum",
"Career preparation workshops",
],
},
{
tag: "Professional",
price: "$4,800",
description: "Comprehensive career development.",
features: [
"All Beginner features",
"Advanced specialization tracks",
"One-on-one mentor sessions",
"Certification exam vouchers",
],
},
{
tag: "Executive",
price: "$7,200",
description: "Accelerated path to leadership.",
features: [
"All Professional features",
"Executive coaching program",
"Guaranteed internship placement",
"Direct employer introductions",
],
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,37 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "programs" section.
import React from 'react';
import FeaturesAlternatingSplit from '@/components/sections/features/FeaturesAlternatingSplit';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ProgramsSection(): React.JSX.Element {
return (
<div id="programs" data-section="programs">
<SectionErrorBoundary name="programs">
<FeaturesAlternatingSplit
tag="Our Programs"
title="Build Real-World Tech Skills"
description="Dive into high-demand fields with our expertly crafted courses. Each program emphasizes hands-on training, industry-relevant tools, and certifications that open doors."
items={[
{
title: "Cloud Computing Mastery",
description: "Become proficient in AWS, Azure, or Google Cloud. Learn infrastructure, deployment, and management to build scalable cloud solutions.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/a-person-intently-focusing-on-a-computer-1780588508689-e7b664ab.jpg",
},
{
title: "Cybersecurity Specialist",
description: "Protect digital assets and networks from threats. Master ethical hacking, threat detection, and incident response with real-world scenarios.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/a-group-of-diverse-students-collaboratin-1780588506647-df991968.png",
},
{
title: "Full-Stack Web Development",
description: "From front-end aesthetics to back-end logic, learn to build robust web applications using the latest frameworks and best practices.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/a-conceptual-image-representing-career-p-1780588510825-e39ec2ee.png",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,37 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "team" section.
import React from 'react';
import TeamStackedCards from '@/components/sections/team/TeamStackedCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TeamSection(): React.JSX.Element {
return (
<div id="team" data-section="team">
<SectionErrorBoundary name="team">
<TeamStackedCards
tag="Our Mentors"
title="Learn From Industry Experts"
description="Our instructors are not just teachers; they are active professionals in their fields, bringing real-world insights and connections directly into your learning experience."
members={[
{
name: "Dr. Alex Sharma",
role: "Lead Cloud Architect (AWS)",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/portrait-of-a-seasoned-male-tech-instruc-1780588506216-e111d3e7.jpg",
},
{
name: "Sarah Chen",
role: "Senior Cybersecurity Analyst",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/portrait-of-an-engaging-female-tech-inst-1780588506180-163bd9ac.png",
},
{
name: "Michael 'Mike' Jones",
role: "Full-Stack Development Lead",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/portrait-of-a-diverse-tech-instructor-la-1780588505941-5bc4472b.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,58 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "testimonials" section.
import React from 'react';
import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialsSection(): React.JSX.Element {
return (
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialColumnMarqueeCards
tag="Success Stories"
title="What Our Alumni Say"
description="Hear directly from our graduates who have successfully launched and advanced their careers in the tech industry."
testimonials={[
{
name: "Aisha Khan",
role: "Cloud Engineer",
quote: "IT Academy gave me the practical skills and confidence to pivot my career. The instructors were phenomenal, always sharing real-world advice.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/headshot-of-a-smiling-young-professional-1780588507884-93d50dc8.png",
},
{
name: "Ben Carter",
role: "Junior Cyber Analyst",
quote: "The cybersecurity program was intense but incredibly rewarding. I landed my dream job just three months after graduating!",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/headshot-of-a-professional-early-30s-loo-1780588505982-e0d6e3ed.png",
},
{
name: "Chloe Davies",
role: "Web Developer",
quote: "I started with zero coding experience. Now, I'm building complex applications. The hands-on projects were key to my learning.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/headshot-of-a-confident-individual-late--1780588508232-99aa37f6.png",
},
{
name: "David Lee",
role: "Data Scientist",
quote: "Flexible scheduling allowed me to study while working. The career support was invaluable for my job search.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/headshot-of-an-enthusiastic-individual-m-1780588506300-fa9d7371.jpg",
},
{
name: "Emily Rodriguez",
role: "DevOps Specialist",
quote: "IT Academy's curriculum is truly industry-aligned. I felt fully prepared for my role, thanks to their in-depth training.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/headshot-of-a-content-professional-early-1780588506470-79e69658.jpg",
},
{
name: "Frank White",
role: "Network Administrator",
quote: "The certification prep was excellent. I passed my exams with flying colors and immediately saw a boost in my career prospects.",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/headshot-of-a-determined-and-successful--1780588506131-994afff6.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}