28 lines
964 B
TypeScript
28 lines
964 B
TypeScript
import Link from "next/link";
|
|
|
|
export function DemoCta() {
|
|
return (
|
|
<section className="mx-auto mt-16 max-w-6xl px-6">
|
|
<div className="rounded-3xl border border-ink/10 bg-ink p-8 text-haze shadow-soft">
|
|
<div className="flex flex-col gap-4 md:flex-row md:items-center md:justify-between">
|
|
<div>
|
|
<p className="text-xs uppercase tracking-[0.3em] text-haze/60">Book a demo</p>
|
|
<h2 className="mt-3 text-2xl font-semibold">
|
|
See LedgerOne in a live walkthrough.
|
|
</h2>
|
|
<p className="mt-2 text-sm text-haze/70">
|
|
Talk through your workflow and learn how to keep a complete audit trail.
|
|
</p>
|
|
</div>
|
|
<Link
|
|
href="/book-demo"
|
|
className="inline-flex rounded-full bg-haze px-5 py-2 text-sm font-semibold text-ink"
|
|
>
|
|
Book a demo
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|