Compare commits
12 Commits
version_3_
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| d8ee95cf9d | |||
|
|
becc9b237f | ||
| 67583242c0 | |||
|
|
ec2b1644d4 | ||
| db0cfccea5 | |||
|
|
f9e38ba10c | ||
| c3733526ad | |||
|
|
7ff20ed7a1 | ||
| 2a1080cc09 | |||
|
|
ff81c665b3 | ||
|
|
4c755c82bc | ||
| 47582c46ea |
@@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom';
|
||||
import Layout from './components/Layout';
|
||||
import HomePage from './pages/HomePage';
|
||||
|
||||
import CaseStudiesPage from "@/pages/CaseStudiesPage";
|
||||
export default function App() {
|
||||
return (
|
||||
<Routes>
|
||||
<Route element={<Layout />}>
|
||||
<Route path="/" element={<HomePage />} />
|
||||
<Route path="/case-studies" element={<CaseStudiesPage />} />
|
||||
</Route>
|
||||
</Routes>
|
||||
);
|
||||
|
||||
@@ -38,11 +38,13 @@ export default function Layout() {
|
||||
{
|
||||
"name": "Contact",
|
||||
"href": "#contact"
|
||||
}
|
||||
},
|
||||
{ name: "Case Studies", href: "/case-studies" },
|
||||
|
||||
];
|
||||
|
||||
return (
|
||||
<StyleProvider buttonVariant="bounce" siteBackground="gridLines" heroBackground="lightRaysCorner">
|
||||
<StyleProvider buttonVariant="primary" siteBackground="gridLines" heroBackground="lightRaysCorner">
|
||||
<SiteBackgroundSlot />
|
||||
<SectionErrorBoundary name="navbar">
|
||||
<NavbarInline
|
||||
|
||||
17
src/pages/CaseStudiesPage.tsx
Normal file
17
src/pages/CaseStudiesPage.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import Button from "@/components/ui/Button";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import { ArrowUpRight, Loader2 } from "lucide-react";
|
||||
import ScrollReveal from "@/components/ui/ScrollReveal";
|
||||
import GridOrCarousel from "@/components/ui/GridOrCarousel";
|
||||
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
||||
import { useButtonClick } from "@/hooks/useButtonClick";
|
||||
import useBlogPosts from "@/hooks/useBlogPosts";
|
||||
|
||||
export default function CaseStudiesPage() {
|
||||
return (
|
||||
<>
|
||||
<div data-webild-section="AboutText"><section aria-label="About section" className="py-20"><div className="w-content-width mx-auto flex flex-col gap-2 items-center"><TextAnimation text="Proven Results: Client Success Stories" variant="fade" gradientText={false} tag="h2" className="text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance" /><div className="flex flex-wrap gap-3 justify-center mt-2 md:mt-3"><Button text="Explore Case Studies" href="#case-studies" variant="primary" /><Button text="Speak with an Expert" href="/contact" variant="secondary" animationDelay={0.1} /></div></div></section></div>
|
||||
<div data-webild-section="BlogSimpleCards"><section aria-label="Blog section" className="py-20"><div className="w-content-width mx-auto flex justify-center"><Loader2 className="size-8 animate-spin text-foreground" strokeWidth={1.5} /></div></section></div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
@@ -6,4 +6,5 @@ export interface Route {
|
||||
|
||||
export const routes: Route[] = [
|
||||
{ path: '/', label: 'Home', pageFile: 'HomePage' },
|
||||
{ path: '/case-studies', label: 'Case Studies', pageFile: 'CaseStudiesPage' },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user