9 Commits

Author SHA1 Message Date
d8ee95cf9d Merge version_8_1780697769454 into main
Merge version_8_1780697769454 into main
2026-06-05 22:17:33 +00:00
kudinDmitriyUp
becc9b237f Bob AI (stub): add linkedin and instagram icons over photos of our mentors 2026-06-05 22:17:29 +00:00
67583242c0 Merge version_7_1780697654612 into main
Merge version_7_1780697654612 into main
2026-06-05 22:15:13 +00:00
kudinDmitriyUp
ec2b1644d4 Bob AI (stub): add linkedin and instagram icons over photos of our mentors 2026-06-05 22:15:09 +00:00
db0cfccea5 Merge version_6_1780674196334 into main
Merge version_6_1780674196334 into main
2026-06-05 15:45:31 +00:00
kudinDmitriyUp
f9e38ba10c Bob AI: Changed button variant to primary to remove hover effects 2026-06-05 15:43:49 +00:00
c3733526ad Merge version_5_1780590483345 into main
Merge version_5_1780590483345 into main
2026-06-04 16:29:39 +00:00
kudinDmitriyUp
7ff20ed7a1 Bob AI: Added a dedicated lead generation form after the hero sectio 2026-06-04 16:28:56 +00:00
2a1080cc09 Merge version_4_1780589548196 into main
Merge version_4_1780589548196 into main
2026-06-04 16:13:57 +00:00
3 changed files with 29 additions and 2 deletions

View File

@@ -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

View File

@@ -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 />

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>
);
}