Commit
add distinctive closing cta section
commit
21356b6
1 changed file with +26 and −1
modified src/app/page.tsx +26 −1
| @@ -1,4 +1,4 @@ | ||
| 1 | -import { Gavel, GitCompareArrows, MessagesSquare, PencilLine, Scale, Users } from 'lucide-react'; | |
| 1 | +import { ArrowRight, Gavel, GitCompareArrows, MessagesSquare, PencilLine, Scale, Users } from 'lucide-react'; | |
| 2 | 2 | import Link from 'next/link'; |
| 3 | 3 | import { LandingBackground } from '@/components/landing-background'; |
| 4 | 4 | import { LandingHero } from '@/components/landing-hero'; |
| @@ -65,6 +65,31 @@export default async function HomePage() { | ||
| 65 | 65 | </ol> |
| 66 | 66 | </section> |
| 67 | 67 | |
| 68 | + <section className="container border-t py-24 sm:py-32"> | |
| 69 | + <Reveal className="mx-auto max-w-3xl text-center"> | |
| 70 | + <p className="font-mono text-xs uppercase tracking-[0.22em] text-muted-foreground"> | |
| 71 | + your question, deliberated | |
| 72 | + </p> | |
| 73 | + <h2 className="mx-auto mt-4 max-w-2xl font-display text-4xl font-medium leading-[1.04] tracking-tight sm:text-6xl"> | |
| 74 | + Stop trusting one model's <em className="text-primary">first guess</em>. | |
| 75 | + </h2> | |
| 76 | + <p className="mx-auto mt-6 max-w-xl text-lg leading-relaxed text-muted-foreground"> | |
| 77 | + Convene a council, watch them reason in the open, and get an answer you can actually inspect. | |
| 78 | + </p> | |
| 79 | + <div className="mt-9 flex flex-wrap items-center justify-center gap-3"> | |
| 80 | + <Button size="lg" asChild className="group"> | |
| 81 | + <Link href="/debate"> | |
| 82 | + Start a debate | |
| 83 | + <ArrowRight className="h-4 w-4 transition-transform group-hover:translate-x-0.5" /> | |
| 84 | + </Link> | |
| 85 | + </Button> | |
| 86 | + <Button size="lg" variant="ghost" asChild> | |
| 87 | + <Link href="/demo">Watch a recording</Link> | |
| 88 | + </Button> | |
| 89 | + </div> | |
| 90 | + </Reveal> | |
| 91 | + </section> | |
| 92 | + | |
| 68 | 93 | <footer className="container flex items-center justify-between border-t py-8 text-sm text-muted-foreground"> |
| 69 | 94 | <span className="flex items-center gap-2"> |
| 70 | 95 | <GitCompareArrows className="h-4 w-4 text-primary" /> Roundtable |