diff --git a/src/components/sections/DualValueProps.astro b/src/components/sections/DualValueProps.astro new file mode 100644 index 0000000..c92ceeb --- /dev/null +++ b/src/components/sections/DualValueProps.astro @@ -0,0 +1,38 @@ +--- +interface Tile { + outcome: string; + capability: string; +} + +const tiles: Tile[] = [ + { + outcome: 'Cut debugging time in half.', + capability: + 'Every processor on every route, timed to the nanosecond. Choice branches, splits, multicasts, and error handlers preserved as a proper execution tree — not a pile of log lines.', + }, + { + outcome: 'Ship integrations with confidence.', + capability: + 'Capture real payloads and replay them on demand. Deep-trace a specific correlation ID across services. Push trace settings to a running agent without a redeploy.', + }, + { + outcome: 'Keep what you have built.', + capability: + 'One `-javaagent` flag. No code changes, no SDK, no framework lock-in. Native understanding of 45+ EIP node types across Apache Camel 4.x.', + }, +]; +--- +
+
+
+ {tiles.map((tile) => ( +
+

+ {tile.outcome} +

+

$1')}>

+
+ ))} +
+
+