Files
vibn-frontend/marketing/components/cta.tsx
Mark Henderson 74f8dc4282 fix(ui): make Justine palette visible on marketing + trim rainbow chrome
- Replace blue/purple gradients with ink gradient text and cream/parch CTA surface
- Step badges and transformation icons use primary (ink) fills
- /features page icons unified to text-primary; Lora section titles
- Tree view status colors use semantic tokens instead of blue/green

Made-with: Cursor
2026-04-01 21:09:18 -07:00

34 lines
1.3 KiB
TypeScript

import { Button } from "@/components/ui/button";
import { Sparkles, Calendar } from "lucide-react";
import Link from "next/link";
import { homepage } from "@/marketing/content/homepage";
export function CTA() {
return (
<section className="w-full py-16 md:py-24">
<div className="container mx-auto px-6">
<div className="vibn-cta-surface mx-auto flex max-w-[980px] flex-col items-center gap-6 rounded-2xl border border-border p-12 md:p-16">
<h2 className="font-serif text-2xl font-semibold leading-tight tracking-tight md:text-4xl lg:text-5xl text-center max-w-[800px]">
{homepage.finalCTA.title}
</h2>
<div className="flex flex-col sm:flex-row gap-4 pt-4">
<Link href="/auth">
<Button size="lg" className="h-12 px-8 text-base">
<Sparkles className="mr-2 h-5 w-5" />
{homepage.finalCTA.cta.primary}
</Button>
</Link>
<Link href="https://calendly.com/your-link" target="_blank" rel="noopener noreferrer">
<Button variant="outline" size="lg" className="h-12 px-8 text-base">
<Calendar className="mr-2 h-5 w-5" />
{homepage.finalCTA.cta.secondary}
</Button>
</Link>
</div>
</div>
</div>
</section>
);
}