From 897368246b923b5d68ec638f45c6042b5dbbd2f1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 05:57:43 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 255 +++++------------------------------------------ 1 file changed, 23 insertions(+), 232 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d97ceb5..05f51e8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,87 +30,29 @@ export default function LandingPage() {
@@ -120,41 +62,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { - id: "f1", - title: "Staff Management", - subtitle: "Centrally manage permissions", - category: "Admins", - value: "Full Control", - }, - { - id: "f2", - title: "Quick Scheduling", - subtitle: "Streamlined patient booking", - category: "Cashiers", - value: "Efficiency", - }, - { - id: "f3", - title: "Integrated Prescriptions", - subtitle: "Simple prescription writing", - category: "Doctors", - value: "Speed", - }, - { - id: "f4", - title: "Secure Patient Logs", - subtitle: "Encrypted digital records", - category: "All Roles", - value: "High Security", - }, - { - id: "f5", - title: "Automated Billing", - subtitle: "Instant invoicing logic", - category: "Cashiers", - value: "Seamless", - }, + { id: "f1", title: "Staff Management", subtitle: "Centrally manage permissions", category: "Admins", value: "Full Control" }, + { id: "f2", title: "Quick Scheduling", subtitle: "Streamlined patient booking", category: "Cashiers", value: "Efficiency" }, + { id: "f3", title: "Integrated Prescriptions", subtitle: "Simple prescription writing", category: "Doctors", value: "Speed" }, ]} title="Built for every role in the clinic" description="Streamlined interfaces for admins, doctors, and cashiers." @@ -168,21 +78,8 @@ export default function LandingPage() { gridVariant="bento-grid" useInvertedBackground={true} metrics={[ - { - id: "m1", - value: "95%", - description: "Appointment completion", - }, - { - id: "m2", - value: "2.5m", - description: "Avg intake time", - }, - { - id: "m3", - value: "40+", - description: "Clinics on platform", - }, + { id: "m1", value: "95%", description: "Appointment completion" }, + { id: "m2", value: "2.5m", description: "Avg intake time" }, ]} title="Operational excellence" description="Data-driven clinic performance tracking." @@ -196,48 +93,9 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "p1", - name: "Staff Management", - price: "Included", - variant: "Module", - imageSrc: "http://img.b2bpic.net/free-photo/team-doctors-looking-digital-tablet_107420-84759.jpg", - }, - { - id: "p2", - name: "Patient Intake", - price: "Included", - variant: "Module", - imageSrc: "http://img.b2bpic.net/free-photo/register-now-application-information-concept_53876-125164.jpg", - }, - { - id: "p3", - name: "Daily Scheduler", - price: "Included", - variant: "Module", - imageSrc: "http://img.b2bpic.net/free-photo/stethoscope-patient-information_1232-4435.jpg", - }, - { - id: "p4", - name: "Prescription Portal", - price: "Included", - variant: "Module", - imageSrc: "http://img.b2bpic.net/free-photo/medical-objects-assortment-with-empty-notepad_23-2148502893.jpg", - }, - { - id: "p5", - name: "Clinic Reporting", - price: "Add-on", - variant: "Module", - imageSrc: "http://img.b2bpic.net/free-photo/tablet-medical-equipment_23-2147648741.jpg", - }, - { - id: "p6", - name: "Access Control", - price: "Included", - variant: "Module", - imageSrc: "http://img.b2bpic.net/free-photo/female-coworkers-wearing-face-masks-cooperating-while-using-desktop-pc-office_637285-5262.jpg", - }, + { id: "p1", name: "Staff Management", price: "Included", variant: "Module", imageSrc: "http://img.b2bpic.net/free-photo/team-doctors-looking-digital-tablet_107420-84759.jpg" }, + { id: "p2", name: "Patient Intake", price: "Included", variant: "Module", imageSrc: "http://img.b2bpic.net/free-photo/register-now-application-information-concept_53876-125164.jpg" }, + { id: "p3", name: "Daily Scheduler", price: "Included", variant: "Module", imageSrc: "http://img.b2bpic.net/free-photo/stethoscope-patient-information_1232-4435.jpg" }, ]} title="Platform modules" description="Comprehensive tools for modern practices." @@ -248,31 +106,8 @@ export default function LandingPage() { @@ -327,32 +142,8 @@ export default function LandingPage() { -- 2.49.1 From 30f95b5dcf0c8e673baa27bc6b71975a117d7977 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 05:57:43 +0000 Subject: [PATCH 2/2] Add src/app/services/page.tsx --- src/app/services/page.tsx | 75 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 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..f8d772d --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,75 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; +import { Stethoscope, ClipboardList, ShieldCheck } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1