Merge version_5_1780590483345 into main #4
@@ -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 />
|
||||
|
||||
19
src/pages/HomePage/sections/LeadGen.tsx
Normal file
19
src/pages/HomePage/sections/LeadGen.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user