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';
import DualValueProps from '../components/sections/DualValueProps.astro';
2026-04-25 00:22:28 +02:00
import ProductShowcase from '../components/sections/ProductShowcase.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-24 23:40:17 +02:00
title="Cameleer — Run Apache Camel without running Apache Camel"
description="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."
2026-04-24 17:19:47 +02:00
>
<SiteHeader />
<main>
<Hero />
<DualValueProps />
2026-04-25 00:22:28 +02:00
<ProductShowcase />
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>