- 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
37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
import { Sparkles } from "lucide-react";
|
|
import { homepage } from "@/marketing/content/homepage";
|
|
|
|
export function Transformation() {
|
|
return (
|
|
<section className="w-full py-16 md:py-24 bg-muted/30">
|
|
<div className="container mx-auto px-6">
|
|
<div className="mx-auto max-w-[900px] space-y-12">
|
|
<div className="text-center space-y-4">
|
|
<h2 className="font-serif text-3xl font-semibold tracking-tight md:text-5xl">
|
|
{homepage.transformation.title}
|
|
</h2>
|
|
<p className="text-lg text-muted-foreground md:text-xl pt-4 leading-relaxed">
|
|
{homepage.transformation.description}
|
|
</p>
|
|
</div>
|
|
|
|
<div className="grid gap-6 md:grid-cols-2 pt-8">
|
|
{homepage.transformation.outcomes.map((outcome, index) => (
|
|
<div
|
|
key={index}
|
|
className="flex items-start gap-4 rounded-lg border bg-background p-6 shadow-sm"
|
|
>
|
|
<div className="mt-1 rounded-full bg-primary p-2 text-primary-foreground">
|
|
<Sparkles className="h-5 w-5" />
|
|
</div>
|
|
<p className="text-lg leading-relaxed font-medium">{outcome}</p>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|