diff --git a/src/components/sections/Hero.astro b/src/components/sections/Hero.astro index 14301fb..8db0127 100644 --- a/src/components/sections/Hero.astro +++ b/src/components/sections/Hero.astro @@ -2,6 +2,19 @@ import CTAButtons from '../CTAButtons.astro'; import TopographicBg from '../TopographicBg.astro'; import Lightbox from '../Lightbox.astro'; + +interface Pin { + label: string; + body: string; + top: string; + left: string; +} + +const pins: Pin[] = [ + { label: '01', body: 'Correlation ID — click to follow one exchange across services.', top: '14%', left: '12%' }, + { label: '02', body: 'Failure in context — circuit breaker tripped, fallback ran, tried backend:80.', top: '46%', left: '52%' }, + { label: '03', body: 'Full error pinned — exception, stack trace, headers, payload.', top: '78%', left: '78%' }, +]; ---
@@ -22,19 +35,20 @@ import Lightbox from '../Lightbox.astro'; Your camels called. They want a GPS.

-

- Run Apache Camel without running Apache Camel. - - +

+ Ship Camel integrations. Sleep through the night.

-

- The hosted home for your Camel integrations — with deep tracing, replay, and live control built in. Because you chose Camel to stay free, not to stay up all night. +

+ Cameleer is the hosted runtime and observability platform for Apache Camel — auto-traced, replay-ready, cross-service correlated. The 3 AM page becomes a 30-second answer. +

+ +

+ 14-day trial · from €20/mo · no credit card

-
@@ -46,7 +60,24 @@ import Lightbox from '../Lightbox.astro'; loading="eager" />
+ {pins.map((pin) => ( + + ))}
+
    + {pins.map((pin) => ( +
  • + {pin.label} + {pin.body} +
  • + ))} +
@@ -54,36 +85,21 @@ import Lightbox from '../Lightbox.astro';
- -