Switch to version 1: remove src/pages/HomePage/sections/Devices.tsx

This commit is contained in:
2026-06-14 06:58:25 +00:00
parent a00ae61197
commit 4eaa5c94bf

View File

@@ -1,36 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "devices" section.
import React from 'react';
import FeaturesBento from '@/components/sections/features/FeaturesBento';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function DevicesSection(): React.JSX.Element {
return (
<div id="devices" data-section="devices">
<SectionErrorBoundary name="devices">
<FeaturesBento
tag="Core Technology"
title="Platform Capabilities"
description="Our ecosystem delivers unprecedented reliability and performance for the healthcare industry."
features={[
{
title: "Clinical Data", description: "Seamless integration with hospital EMR systems for real-time monitoring.", bentoComponent: "animated-bar-chart"
},
{
title: "Patient Care", description: "Optimized workflows to reduce administrative burden on caregivers.", bentoComponent: "checklist-timeline", heading: "Implementation", subheading: "Phase-by-phase rollout", checklistItems: [
{ label: "Device Setup", detail: "Configuring network" },
{ label: "Security Sync", detail: "HIPAA compliance" },
{ label: "Team Training", detail: "Staff onboarding" },
],
completedLabel: "Active"
},
{
title: "Secure Access", description: "Multi-factor authentication protecting patient records.", bentoComponent: "orbiting-icons", centerIcon: "Lock", orbitIcons: ["Shield", "Key", "Fingerprint", "User"]
},
]}
/>
</SectionErrorBoundary>
</div>
);
}