hatch-surf/components/Why.tsx
Chris Anderson 6e51790cfa feat: landing page redesign - Phase 1 & 2
- Hero: gradient text, enhanced CTAs, improved terminal styling
- Features: color-coded cards (blue/purple/cyan) with hover effects
- Why: card grid layout with color-coded left borders
- CTA: stronger visual hierarchy with gradient text
- Accessibility: skip-to-content link, main landmark
- Remove duplicate main tag from page.tsx

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-06-24 17:16:00 +02:00

63 lines
2.0 KiB
TypeScript

const reasons = [
{
number: '01',
title: 'Compliance and privacy',
description: 'Some teams cannot legally send webhook payloads to a hosted SaaS. Hatch keeps the data on your own network.',
color: 'blue',
},
{
number: '02',
title: 'Cost',
description: 'A hosted inspector charges per request, per seat, or per retention day. Hatch is one Go binary on a $5 VPS. There is no per-request fee because there is no one to charge it.',
color: 'purple',
},
{
number: '03',
title: 'Speed of setup',
description: (
<>
<code className="px-2 py-0.5 bg-zinc-800 border border-zinc-700 rounded text-fuchsia-400 text-sm">
docker compose up
</code>{' '}
is faster than signing up for a SaaS, verifying your email, configuring your first bin, and pasting the URL into your webhook config.
</>
),
color: 'cyan',
},
]
const colorClasses = {
blue: 'border-l-blue-500',
purple: 'border-l-purple-500',
cyan: 'border-l-cyan-500',
}
export default function Why() {
return (
<section className="py-20 px-6">
<div className="max-w-4xl mx-auto">
<h2 className="text-3xl md:text-4xl font-bold text-center mb-16">
Why a single binary, not a SaaS
</h2>
<div className="grid md:grid-cols-3 gap-6">
{reasons.map((reason) => (
<div
key={reason.number}
className={`p-6 rounded-xl bg-gradient-to-b from-zinc-900/80 to-zinc-900/40 border border-zinc-800 border-l-4 ${colorClasses[reason.color as keyof typeof colorClasses]} hover:-translate-y-1 transition-all shadow-lg hover:shadow-xl`}
>
<div className="text-4xl font-bold text-zinc-600 font-mono mb-4">
{reason.number}
</div>
<h3 className="text-xl font-semibold mb-2">{reason.title}</h3>
<p className="text-zinc-400 leading-relaxed">
{reason.description}
</p>
</div>
))}
</div>
</div>
</section>
)
}