25 lines
950 B
TypeScript
25 lines
950 B
TypeScript
import Link from "next/link";
|
|
|
|
export function DemoCta() {
|
|
return (
|
|
<section className="mx-auto mt-10 max-w-6xl px-6">
|
|
<div className="rounded-3xl border border-border bg-secondary/30 backdrop-blur-sm p-6 shadow-sm">
|
|
<div className="flex flex-col gap-4 md:flex-row md:items-center md:justify-between">
|
|
<div>
|
|
<p className="text-xs font-semibold uppercase tracking-[0.2em] text-muted-foreground">Book a demo</p>
|
|
<h2 className="mt-3 text-2xl font-semibold text-foreground">
|
|
See LedgerOne in a live walkthrough.
|
|
</h2>
|
|
<p className="mt-2 text-sm text-muted-foreground">
|
|
Talk through your workflow and learn how to keep a complete audit trail.
|
|
</p>
|
|
</div>
|
|
<Link href="/book-demo" className="btn-primary inline-flex shrink-0">
|
|
Book a demo
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|