2 Commits

Author SHA1 Message Date
67e240bd6e Update src/app/page.tsx 2026-05-22 00:59:34 +00:00
9b757f94b8 Merge version_2 into main
Merge version_2 into main
2026-05-22 00:57:26 +00:00

View File

@@ -3,15 +3,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
export default function LandingPage() {
return (
@@ -28,83 +24,85 @@ export default function LandingPage() {
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Travel Nursing", id: "features" },
{ name: "Contact", id: "contact" },
]}
brandName="Venture Healthcare"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Travel Nursing", id: "features" },
{ name: "Contact", id: "contact" },
]}
brandName="Venture Healthcare"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Venture Healthcare Inc."
description="Connecting passionate travel nurses with rewarding career opportunities across the nation."
buttons={[
{ text: "View Opportunities", href: "#features" },
{ text: "Contact Us", href: "#contact" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/doctor-working-with-patient_23-2148738281.jpg"
imageAlt="Healthcare Professionals"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Venture Healthcare Inc."
description="Connecting passionate travel nurses with rewarding career opportunities across the nation."
buttons={[
{ text: "View Opportunities", href: "#features" },
{ text: "Contact Us", href: "#contact" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/doctor-working-with-patient_23-2148738281.jpg"
imageAlt="Healthcare Professionals"
/>
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{ type: "text", content: "Your Career, " },
{ type: "image", src: "http://img.b2bpic.net/free-photo/nurse-holding-chart_23-2148421252.jpg", alt: "Travel Nurse" },
{ type: "text", content: " Your Journey" },
]}
buttons={[{ text: "Join Our Team", href: "#contact" }]}
/>
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{ type: "text", content: "Your Career, " },
{ type: "image", src: "http://img.b2bpic.net/free-photo/nurse-holding-chart_23-2148421252.jpg", alt: "Travel Nurse" },
{ type: "text", content: " Your Journey" },
]}
buttons={[{ text: "Join Our Team", href: "#contact" }]}
/>
</div>
<div id="features" data-section="features">
<FeatureCardNineteen
textboxLayout="split"
useInvertedBackground={false}
features={[
{
tag: "Nursing", title: "Travel Nursing", subtitle: "Exclusive Assignments", description: "Access top-tier travel nursing positions with industry-leading support and benefits.", imageSrc: "http://img.b2bpic.net/free-photo/nurse-examining-patient_23-2149334225.jpg"},
{
tag: "Community", title: "Company Culture", subtitle: "Driven by Excellence", description: "We foster a supportive environment where every nurse can thrive personally and professionally.", imageSrc: "http://img.b2bpic.net/free-photo/medical-team-working-together_23-2148204025.jpg"},
]}
title="Why Venture Healthcare?"
description="We prioritize our nurses by providing personalized career guidance and comprehensive placement services."
/>
</div>
<div id="features" data-section="features">
<FeatureCardNineteen
textboxLayout="split"
useInvertedBackground={false}
features={[
{
tag: "Nursing", title: "Travel Nursing", subtitle: "Exclusive Assignments", description: "Access top-tier travel nursing positions with industry-leading support and benefits.", imageSrc: "http://img.b2bpic.net/free-photo/nurse-examining-patient_23-2149334225.jpg"
},
{
tag: "Community", title: "Company Culture", subtitle: "Driven by Excellence", description: "We foster a supportive environment where every nurse can thrive personally and professionally.", imageSrc: "http://img.b2bpic.net/free-photo/medical-team-working-together_23-2148204025.jpg"
},
]}
title="Why Venture Healthcare?"
description="We prioritize our nurses by providing personalized career guidance and comprehensive placement services."
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Let's Get in Touch"
description="Reach out to our recruitment experts to begin your next assignment or for general inquiries. Our office is located in the heart of the city."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
]}
textarea={{ name: "message", placeholder: "How can we help you?", rows: 4 }}
imageSrc="http://img.b2bpic.net/free-photo/office-desk-modern_23-2148006560.jpg"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Let's Get in Touch"
description="Reach out to our recruitment experts to begin your next assignment or for general inquiries. Our office is located in the heart of the city."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
]}
textarea={{ name: "message", placeholder: "How can we help you?", rows: 4 }}
imageSrc="http://img.b2bpic.net/free-photo/office-desk-modern_23-2148006560.jpg"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Venture Healthcare", items: [{ label: "Careers", href: "#" }, { label: "Resources", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
]}
bottomLeftText="© 2025 Venture Healthcare Inc."
bottomRightText="123 Health Ave, Medical District"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Venture Healthcare", items: [{ label: "Careers", href: "#" }, { label: "Resources", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
]}
bottomLeftText="© 2025 Venture Healthcare Inc."
bottomRightText="123 Health Ave, Medical District"
/>
</div>
</ReactLenis>
</ThemeProvider>
);