Merge version_5_1780590483345 into main #4

Merged
bender merged 1 commits from version_5_1780590483345 into main 2026-06-04 16:29:39 +00:00
2 changed files with 22 additions and 1 deletions

View File

@@ -14,10 +14,12 @@ import PartnersSection from './HomePage/sections/Partners';
import ContactSection from './HomePage/sections/Contact';
import FaqSection from './HomePage/sections/Faq';export default function HomePage(): React.JSX.Element {
import FaqSection from './HomePage/sections/Faq';
import LeadGenSection from './HomePage/sections/LeadGen';export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<LeadGenSection />
<AboutSection />
<ProgramsSection />
<MetricsSection />

View File

@@ -0,0 +1,19 @@
// Created by add_section_from_catalog (ContactSplitForm).
import React from 'react';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
export default function LeadGenSection(): React.JSX.Element {
return (
<div data-webild-section="lead-gen" id="lead-gen">
<ContactSplitForm
description="Take the first step towards your tech career. Speak with an advisor to find the right program for your goals and background."
buttonText="Request Consultation"
tag="Free Consultation"
title="Request a Free Consultation"
inputs={[{"required":true,"name":"name","placeholder":"Full Name","type":"text"},{"type":"email","placeholder":"Email Address","name":"email","required":true},{"placeholder":"Phone Number","type":"tel","name":"phone","required":false}]}
imageSrc="https://picsum.photos/seed/1412377332/1200/800"
/>
</div>
);
}