Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-04-14 21:13:10 +00:00
2 changed files with 90 additions and 27 deletions

View File

@@ -31,7 +31,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Services", id: "features" },
{ name: "Services", id: "/services" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
@@ -65,31 +65,6 @@ export default function LandingPage() {
/>
</div>
<div id="features" data-section="features">
<FeatureCardNine
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Revenue Cycle Management", description: "End-to-end management ensuring maximum reimbursements.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/online-health-insurance-registration_53876-94851.jpg", imageAlt: "revenue cycle management dashboard" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/medical-examination-report-history-history_53876-123855.jpg", imageAlt: "revenue cycle management dashboard" }
},
{
title: "Claims Processing", description: "Accurate, timely submission of all your insurance claims.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/african-american-therapist-man-holding-mock-up-green-screen-chroma-key-tablet-with-isolated-display-horizontal-position-while-analyzing-sickness-expertise-hospital-office-medicine-concept_482257-29751.jpg", imageAlt: "revenue cycle management dashboard" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/nurse-working-with-tablet_23-2147612182.jpg", imageAlt: "revenue cycle management dashboard" }
},
{
title: "Denial Management", description: "Systematic follow-up on every denied claim to recover revenue.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-with-businessman-patching-something-keyboard-graphics-monitor_482257-32827.jpg", imageAlt: "revenue cycle management dashboard" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/medic-recommending-supplements-painkillers-medical-insurance_482257-124742.jpg", imageAlt: "revenue cycle management dashboard" }
},
]}
showStepNumbers={false}
title="Our Billing Services"
description="Comprehensive tools and expertise to handle your practice's financial health."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
animationType="slide-up"
@@ -137,7 +112,7 @@ export default function LandingPage() {
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Careers", href: "#" }] },
{ title: "Services", items: [{ label: "Medical Billing", href: "#features" }, { label: "Revenue Cycle", href: "#features" }] },
{ title: "Services", items: [{ label: "Medical Billing", href: "/services" }, { label: "Revenue Cycle", href: "/services" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
bottomLeftText="© 2024 MedBilling Solutions"

88
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,88 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import ContactCTA from '@/components/sections/contact/ContactCTA';
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="small"
sizing="mediumLargeSizeLargeTitles"
background="aurora"
cardStyle="gradient-mesh"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/services" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
brandName="MedBilling Solutions"
/>
</div>
<div id="features" data-section="features">
<FeatureCardNine
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Revenue Cycle Management", description: "End-to-end management ensuring maximum reimbursements.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/online-health-insurance-registration_53876-94851.jpg", imageAlt: "revenue cycle management dashboard" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/medical-examination-report-history-history_53876-123855.jpg", imageAlt: "revenue cycle management dashboard" }
},
{
title: "Claims Processing", description: "Accurate, timely submission of all your insurance claims.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/african-american-therapist-man-holding-mock-up-green-screen-chroma-key-tablet-with-isolated-display-horizontal-position-while-analyzing-sickness-expertise-hospital-office-medicine-concept_482257-29751.jpg", imageAlt: "revenue cycle management dashboard" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/nurse-working-with-tablet_23-2147612182.jpg", imageAlt: "revenue cycle management dashboard" }
},
{
title: "Denial Management", description: "Systematic follow-up on every denied claim to recover revenue.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-with-businessman-patching-something-keyboard-graphics-monitor_482257-32827.jpg", imageAlt: "revenue cycle management dashboard" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/medic-recommending-supplements-painkillers-medical-insurance_482257-124742.jpg", imageAlt: "revenue cycle management dashboard" }
},
]}
showStepNumbers={false}
title="Our Specialized Services"
description="Comprehensive tools and expertise to handle your practice's financial health."
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={true}
background={{ variant: "plain" }}
tag="Get In Touch"
title="Ready to Optimize Your Billing?"
description="Our experts are here to help your practice grow."
buttons={[{ text: "Contact Sales", href: "/#contact" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "About Us", href: "/#about" }, { label: "Careers", href: "#" }] },
{ title: "Services", items: [{ label: "Medical Billing", href: "/services" }, { label: "Revenue Cycle", href: "/services" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
bottomLeftText="© 2024 MedBilling Solutions"
bottomRightText="All rights reserved"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}