From 127d3362694b6a9ce1e0bb7b4e85d5e9d88edae6 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 31 Mar 2026 16:41:32 +0000 Subject: [PATCH 1/5] Add src/app/appointment/page.tsx --- src/app/appointment/page.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/app/appointment/page.tsx diff --git a/src/app/appointment/page.tsx b/src/app/appointment/page.tsx new file mode 100644 index 0000000..4316f61 --- /dev/null +++ b/src/app/appointment/page.tsx @@ -0,0 +1,28 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; + +export default function AppointmentPage() { + return ( + + + + + + + ); +} \ No newline at end of file -- 2.49.1 From c999dbcee3fce96759c334c4ba48fcd434398987 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 31 Mar 2026 16:41:32 +0000 Subject: [PATCH 2/5] Add src/app/doctors/page.tsx --- src/app/doctors/page.tsx | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/app/doctors/page.tsx diff --git a/src/app/doctors/page.tsx b/src/app/doctors/page.tsx new file mode 100644 index 0000000..849f504 --- /dev/null +++ b/src/app/doctors/page.tsx @@ -0,0 +1,34 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import TeamCardSix from '@/components/sections/team/TeamCardSix'; + +export default function DoctorsPage() { + return ( + + + + + + + ); +} \ No newline at end of file -- 2.49.1 From 5191d63759da9c6be2a341df896b3a470f30008d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 31 Mar 2026 16:41:33 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 287 +++++++---------------------------------------- 1 file changed, 43 insertions(+), 244 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f7b0bba..7c29923 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,12 +2,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; export default function LandingPage() { @@ -26,141 +26,38 @@ export default function LandingPage() { >
@@ -170,152 +67,54 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} + title="Core Telehealth Capabilities" + description="Everything you need for a complete virtual healthcare experience." features={[ - { - id: "f1", - title: "Predictive Analytics", - author: "AI Core", - description: "Forecast energy demand with precision accuracy.", - tags: [ - "AI", - "Analytics", - ], - imageSrc: "http://img.b2bpic.net/free-vector/digital-connecting-banner-technology-polygon-background_1035-17962.jpg?_wi=1", - }, - { - id: "f2", - title: "Grid Monitoring", - author: "Real-time", - description: "Monitor your entire infrastructure in one dashboard.", - tags: [ - "Monitoring", - ], - imageSrc: "http://img.b2bpic.net/free-vector/digital-connecting-banner-technology-polygon-background_1035-17962.jpg?_wi=2", - }, - { - id: "f3", - title: "Sustainability Tracking", - author: "ESG Engine", - description: "Meet your carbon reduction goals faster than ever.", - tags: [ - "ESG", - "Green", - ], - imageSrc: "http://img.b2bpic.net/free-vector/digital-connecting-banner-technology-polygon-background_1035-17962.jpg?_wi=3", - }, + { id: "f1", title: "Secure Video", author: "HIPAA", description: "Encrypted high-definition video consultations.", tags: ["Security"], imageSrc: "http://img.b2bpic.net/free-vector/digital-connecting-banner-technology-polygon-background_1035-17962.jpg?_wi=1" }, + { id: "f2", title: "Easy Booking", author: "Automated", description: "Schedule your appointments in seconds.", tags: ["Convenience"], imageSrc: "http://img.b2bpic.net/free-vector/digital-connecting-banner-technology-polygon-background_1035-17962.jpg?_wi=2" }, + { id: "f3", title: "Instant Support", author: "24/7", description: "Access medical guidance whenever you need it.", tags: ["Reliability"], imageSrc: "http://img.b2bpic.net/free-vector/digital-connecting-banner-technology-polygon-background_1035-17962.jpg?_wi=3" }, ]} - title="Advanced Energy Tools" - description="Comprehensive suite of features designed for modern energy management." />
-
-
); -} +} \ No newline at end of file -- 2.49.1 From b1fc5a60e43228dbeed08977da831719bdb0250c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 31 Mar 2026 16:41:33 +0000 Subject: [PATCH 4/5] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/app/pricing/page.tsx diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..94214a6 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,26 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; + +export default function PricingPage() { + return ( + + +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 5f31a047472cb3cf241d47d56fb8d1bb5f7f9774 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 31 Mar 2026 16:41:34 +0000 Subject: [PATCH 5/5] Add src/app/services/page.tsx --- src/app/services/page.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/app/services/page.tsx diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..903a932 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,28 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; + +export default function ServicesPage() { + return ( + + +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1