From 6f9e98aeb6b0c30fb372b9a5c6dae1daa5c8b07b Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Fri, 24 Apr 2026 17:17:46 +0200 Subject: [PATCH] =?UTF-8?q?Add=20DualValueProps=20section=20=E2=80=94=203?= =?UTF-8?q?=20tiles=20pairing=20outcomes=20with=20capabilities?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/sections/DualValueProps.astro | 38 ++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/components/sections/DualValueProps.astro 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')}>

+
+ ))} +
+
+