Compare commits
9 Commits
version_4_
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| d8ee95cf9d | |||
|
|
becc9b237f | ||
| 67583242c0 | |||
|
|
ec2b1644d4 | ||
| db0cfccea5 | |||
|
|
f9e38ba10c | ||
| c3733526ad | |||
|
|
7ff20ed7a1 | ||
| 2a1080cc09 |
@@ -44,7 +44,7 @@ export default function Layout() {
|
||||
];
|
||||
|
||||
return (
|
||||
<StyleProvider buttonVariant="bounce" siteBackground="gridLines" heroBackground="lightRaysCorner">
|
||||
<StyleProvider buttonVariant="primary" siteBackground="gridLines" heroBackground="lightRaysCorner">
|
||||
<SiteBackgroundSlot />
|
||||
<SectionErrorBoundary name="navbar">
|
||||
<NavbarInline
|
||||
|
||||
@@ -14,10 +14,18 @@ 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';
|
||||
|
||||
|
||||
{/* webild-stub @2026-06-05T22:17:28.678Z: add linkedin and instagram icons over photos of our mentors in our mentors section */}
|
||||
|
||||
{/* webild-stub @2026-06-05T22:15:08.568Z: add linkedin and instagram icons over photos of our mentors in our mentors section */}
|
||||
|
||||
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