Merge version_3_1780589387950 into main #2

Merged
bender merged 1 commits from version_3_1780589387950 into main 2026-06-04 16:11:43 +00:00
2 changed files with 20 additions and 1 deletions

View File

@@ -13,7 +13,8 @@ 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 {
import FaqSection from './HomePage/sections/Faq';export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
@@ -24,6 +25,7 @@ export default function HomePage(): React.JSX.Element {
<TestimonialsSection />
<PricingSection />
<PartnersSection />
<FaqSection />
<ContactSection />
</>
);

View File

@@ -0,0 +1,17 @@
// Created by add_section_from_catalog (FeaturesAlternatingSplit).
import React from 'react';
import FeaturesAlternatingSplit from '@/components/sections/features/FeaturesAlternatingSplit';
export default function FaqSection(): React.JSX.Element {
return (
<div data-webild-section="faq" id="faq">
<FeaturesAlternatingSplit
items={[{"title":"Do I need prior coding experience?","imageSrc":"https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=2070&auto=format&fit=crop","description":"No prior experience is required for our beginner-friendly programs. We start with the basics and progressively build your skills to an advanced level."},{"imageSrc":"https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=2084&auto=format&fit=crop","description":"We provide comprehensive career services including resume reviews, mock interviews, portfolio building, and direct introductions to our hiring partners.","title":"What kind of career support do you offer?"},{"title":"Are the classes online or in-person?","imageSrc":"https://images.unsplash.com/photo-1531482615713-2afd69097998?q=80&w=2070&auto=format&fit=crop","description":"We offer both flexible online cohorts and immersive in-person classes at our campus, allowing you to choose the learning style that best fits your schedule."}]}
description="Find answers to common questions about our IT academy, programs, and career support."
tag="FAQ"
title="Frequently Asked Questions"
/>
</div>
);
}