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="text-3xl font-bold 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="rounded-full bg-gradient-to-br from-blue-500 to-purple-600 p-2 mt-1">
|
|
<Sparkles className="h-5 w-5 text-white" />
|
|
</div>
|
|
<p className="text-lg leading-relaxed font-medium">{outcome}</p>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|