2026-04-24 16:51:37 +02:00
---
2026-04-24 17:13:07 +02:00
import BaseLayout from '../layouts/BaseLayout.astro';
2026-04-24 17:19:47 +02:00
import SiteHeader from '../components/SiteHeader.astro';
import SiteFooter from '../components/SiteFooter.astro';
import Hero from '../components/sections/Hero.astro';
2026-04-25 02:37:17 +02:00
import SocialProofStrip from '../components/sections/SocialProofStrip.astro';
import ThreeAmWalkthrough from '../components/sections/ThreeAmWalkthrough.astro';
2026-04-24 17:19:47 +02:00
import HowItWorks from '../components/sections/HowItWorks.astro';
import WhyUs from '../components/sections/WhyUs.astro';
import PricingTeaser from '../components/sections/PricingTeaser.astro';
import FinalCTA from '../components/sections/FinalCTA.astro';
2026-04-24 16:51:37 +02:00
---
2026-04-24 17:19:47 +02:00
<BaseLayout
2026-04-25 02:37:17 +02:00
title="Cameleer — Ship Camel integrations. Sleep through the night."
description="The hosted runtime and observability platform for Apache Camel. Auto-traced, replay-ready, cross-service correlated — so the 3 AM page becomes a 30-second answer."
2026-04-24 17:19:47 +02:00
>
<SiteHeader />
<main>
<Hero />
2026-04-25 02:37:17 +02:00
<SocialProofStrip />
<ThreeAmWalkthrough />
2026-04-24 17:19:47 +02:00
<HowItWorks />
<WhyUs />
<PricingTeaser />
<FinalCTA />
2026-04-24 17:13:07 +02:00
</main>
2026-04-24 17:19:47 +02:00
<SiteFooter />
2026-04-24 17:13:07 +02:00
</BaseLayout>