H2 now echoes the Hero (intentional bookend pattern). Sub line loses the 'No camels harmed' aside. Single primary CTA — no secondary. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
19 lines
710 B
Plaintext
19 lines
710 B
Plaintext
---
|
|
import CTAButtons from '../CTAButtons.astro';
|
|
import TopographicBg from '../TopographicBg.astro';
|
|
---
|
|
<section class="relative overflow-hidden">
|
|
<TopographicBg opacity={0.18} lines={6} />
|
|
<div class="relative max-w-content mx-auto px-6 py-24 md:py-32 text-center">
|
|
<h2 class="text-display font-bold text-text mb-6">
|
|
Ship integrations. Sleep through the night.
|
|
</h2>
|
|
<p class="text-lg md:text-xl text-text-muted max-w-prose mx-auto mb-10">
|
|
14-day free trial. Your first Camel app, hosted, traced, and running in under ten minutes. No code changes.
|
|
</p>
|
|
<div class="flex justify-center">
|
|
<CTAButtons size="lg" showSecondary={false} />
|
|
</div>
|
|
</div>
|
|
</section>
|