Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 570ecab7a1 | |||
| 791d7d5130 | |||
| ce33fa0252 | |||
| 67e240bd6e | |||
| 9b757f94b8 |
164
src/app/page.tsx
164
src/app/page.tsx
@@ -3,108 +3,106 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
|
||||||
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
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() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="shift-hover"
|
defaultButtonVariant="shift-hover"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="soft"
|
borderRadius="pill"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="largeSmallSizeMediumTitles"
|
sizing="medium"
|
||||||
background="blurBottom"
|
background="noise"
|
||||||
cardStyle="soft-shadow"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="layered"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="extrabold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "hero" },
|
{ name: "Home", id: "hero" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Travel Nursing", id: "features" },
|
{ name: "Services", id: "features" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
brandName="Venture Healthcare"
|
brandName="Venture Healthcare"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogo
|
<HeroLogo
|
||||||
logoText="Venture Healthcare Inc."
|
logoText="Venture Healthcare Inc."
|
||||||
description="Connecting passionate travel nurses with rewarding career opportunities across the nation."
|
description="Connecting passionate travel nurses with rewarding career opportunities across the nation."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View Opportunities", href: "#features" },
|
{ text: "View Opportunities", href: "#features" },
|
||||||
{ text: "Contact Us", href: "#contact" },
|
{ text: "Contact Us", href: "#contact" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/doctor-working-with-patient_23-2148738281.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/doctor-working-with-patient_23-2148738281.jpg"
|
||||||
imageAlt="Healthcare Professionals"
|
imageAlt="Healthcare Professionals"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<InlineImageSplitTextAbout
|
<InlineImageSplitTextAbout
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
heading={[
|
heading={[
|
||||||
{ type: "text", content: "Your Career, " },
|
{ type: "text", content: "Your Career, " },
|
||||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/nurse-holding-chart_23-2148421252.jpg", alt: "Travel Nurse" },
|
{ type: "image", src: "http://img.b2bpic.net/free-photo/nurse-holding-chart_23-2148421252.jpg", alt: "Travel Nurse" },
|
||||||
{ type: "text", content: " Your Journey" },
|
{ type: "text", content: " Your Journey" },
|
||||||
]}
|
]}
|
||||||
buttons={[{ text: "Join Our Team", href: "#contact" }]}
|
buttons={[{ text: "Join Our Team", href: "#contact" }]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="features" data-section="features">
|
<div id="features" data-section="features">
|
||||||
<FeatureCardNineteen
|
<FeatureCardNineteen
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
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: "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"},
|
{
|
||||||
]}
|
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."
|
]}
|
||||||
/>
|
title="Why Venture Healthcare?"
|
||||||
</div>
|
description="We prioritize our nurses by providing personalized career guidance and comprehensive placement services."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Let's Get in Touch"
|
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."
|
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={[
|
inputs={[
|
||||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||||
]}
|
]}
|
||||||
textarea={{ name: "message", placeholder: "How can we help you?", rows: 4 }}
|
textarea={{ name: "message", placeholder: "How can we help you?", rows: 4 }}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/office-desk-modern_23-2148006560.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/office-desk-modern_23-2148006560.jpg"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Venture Healthcare", items: [{ label: "Careers", href: "#" }, { label: "Resources", href: "#" }] },
|
{ title: "Venture Healthcare", items: [{ label: "Careers", href: "#" }, { label: "Resources", href: "#" }] },
|
||||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
bottomLeftText="© 2025 Venture Healthcare Inc."
|
bottomLeftText="© 2025 Venture Healthcare Inc."
|
||||||
bottomRightText="123 Health Ave, Medical District"
|
bottomRightText="123 Health Ave, Medical District"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user