Files
d36898c1-7fbb-4e21-8ba3-e62…/src/pages/HomePage/sections/Metrics.tsx
kudinDmitriyUp 1285cac44b Bob AI: <ATTACHED_BLOCKS>
The user attached the section/component ca
2026-06-17 13:22:41 +00:00

35 lines
1.7 KiB
TypeScript

// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "metrics" section.
import React from 'react';
import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function MetricsSection(): React.JSX.Element {
return (
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsFeatureCards
tag="Business Value"
title="Quantifiable Acceleration"
description="Band reduces trial timelines through proactive coordination and context preservation."
metrics={[
{
value: "2-Week", title: "Timeline Reduction", features: [
"Aggressive conflict resolution", "Automated regulatory alignment", "Reduced redesign iterations"],
},
{
value: "$5M", title: "Acceleration Value", features: [
"Direct ROI for $50M trials", "Reduced operational burn", "Earlier market entry"],
},
{
value: "100%", title: "Audit Coverage", features: [
"Tamper-evident logs", "Traceable context decisions", "Regulatory-ready export"],
},
]}
/>
</SectionErrorBoundary>
</div>
);
}