From f149f2035b63d5be52eac72f605ec1c5d77fa4ce Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 18:03:15 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 41 +++++++++++++++++++++++++++++------------ 1 file changed, 29 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index adbcd4b..8a64b13 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { TrendingUp, Heart, Clock, Zap, Sparkles, ArrowRight, Award, Users, Mail, DollarSign, Crown } from 'lucide-react'; +import { TrendingUp, Heart, Clock, Zap, Sparkles, ArrowRight, Award, Users, Mail, DollarSign, Crown, CheckCircle, ShieldCheck, Zap as ZapIcon } from 'lucide-react'; export default function LandingPage() { return ( @@ -33,6 +33,7 @@ export default function LandingPage() { { name: "Solutions", id: "features" }, { name: "Results", id: "metrics" }, { name: "Testimonials", id: "testimonials" }, + { name: "Pricing", id: "pricing" }, { name: "Contact", id: "contact" } ]} brandName="RoboMed" @@ -198,6 +199,10 @@ export default function LandingPage() { useInvertedBackground={false} animationType="slide-up" buttonAnimation="slide-up" + buttons={[ + { text: "Talk to Sales", href: "#contact" }, + { text: "Explore Features", href: "#features" } + ]} /> @@ -206,10 +211,10 @@ export default function LandingPage() { tag="Take the Next Step" tagIcon={Mail} title="Ready to Transform Your Healthcare Facility?" - description="Schedule a confidential demo with our clinical experts. We'll show you exactly how RoboMed reduces staff burnout, improves patient outcomes, and delivers measurable ROI for your facility." + description="Schedule a confidential demo with our clinical experts to discuss your facility's unique procurement requirements. We'll show you exactly how RoboMed reduces staff burnout, improves patient outcomes, and delivers measurable ROI." buttons={[ - { text: "Request Demo", href: "mailto:hello@robomed.io" }, - { text: "Download ROI Analysis", href: "#" } + { text: "Request Procurement Demo", href: "mailto:procurement@robomed.io" }, + { text: "Download Technical Specifications", href: "#" } ]} background={{ variant: "plain" }} useInvertedBackground={false} @@ -223,8 +228,9 @@ export default function LandingPage() { title: "Solutions", items: [ { label: "Automation Platform", href: "#features" }, { label: "Case Studies", href: "#metrics" }, - { label: "Pricing", href: "#pricing" }, - { label: "Clinical Evidence", href: "#testimonials" } + { label: "Pricing Plans", href: "#pricing" }, + { label: "Clinical Evidence", href: "#testimonials" }, + { label: "ROI Calculator", href: "#" } ] }, { @@ -232,19 +238,30 @@ export default function LandingPage() { { label: "About RoboMed", href: "#about" }, { label: "Healthcare Impact", href: "#metrics" }, { label: "Careers", href: "#" }, - { label: "Contact Us", href: "#contact" } + { label: "Contact Us", href: "#contact" }, + { label: "News & Updates", href: "#" } + ] + }, + { + title: "Compliance & Legal", items: [ + { label: "HIPAA Compliance", href: "#" }, + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Security Certifications", href: "#" }, + { label: "Accessibility", href: "#" } ] }, { title: "Resources", items: [ - { label: "ROI Calculator", href: "#" }, - { label: "Technical Specs", href: "#" }, - { label: "Compliance Info", href: "#" }, - { label: "Security", href: "#" } + { label: "Technical Documentation", href: "#" }, + { label: "Integration Guides", href: "#" }, + { label: "Support Portal", href: "#" }, + { label: "Blog & Insights", href: "#" }, + { label: "Webinars", href: "#" } ] } ]} - copyrightText="© 2025 RoboMed Healthcare Automation. All rights reserved. Transforming healthcare operations." + copyrightText="© 2025 RoboMed Healthcare Automation. All rights reserved. HIPAA Compliant | FDA Cleared | ISO 27001 Certified | SOC 2 Type II Audited. Transforming healthcare operations with secure, compliant automation." /> -- 2.49.1 From b4e7d875d61cc6617167446297e003ce23c3bf91 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 18:03:15 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 337c491..11247f7 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #15479c;; --background-accent: #a8cce8;; */ - --background: #e8f4fb;; - --card: #f0faff;; - --foreground: #0c2d4a;; - --primary-cta: #0ea5e9;; + --background: #e6f7ff;; + --card: #f0fbff;; + --foreground: #0a2540;; + --primary-cta: #0891b2;; --primary-cta-text: #f5f5f5;; - --secondary-cta: #f0faff;; + --secondary-cta: #f0fbff;; --secondary-cta-text: #1c1c1c;; - --accent: #7dd3fc;; - --background-accent: #bae6fd;; + --accent: #06b6d4;; + --background-accent: #a5f3fc;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1