35 lines
1.7 KiB
TypeScript
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>
|
|
);
|
|
}
|