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
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
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
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
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