rSpace-website/components/real-world-examples.tsx

27 lines
1.2 KiB
TypeScript

export function RealWorldExamples() {
return (
<section className="border-b-4 border-secondary bg-muted/30 py-24">
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<div className="text-center">
<h2 className="text-4xl font-bold tracking-tight text-foreground sm:text-5xl retro-shadow-sm">
Shared Digital Spaces for <span className="text-primary">Real World</span> Impact
</h2>
<p className="mt-6 text-xl text-muted-foreground max-w-3xl mx-auto leading-relaxed">
rSpaces aren't just for chatting online—they're tools for making your{" "}
<span className="font-semibold text-foreground">real neighborhood</span> better.
</p>
</div>
<div className="mt-16 text-center">
<div className="inline-block rounded-lg border-2 border-accent bg-accent/10 px-6 py-4 backdrop-blur-sm retro-shadow-sm">
<p className="text-lg font-semibold text-foreground">
<span className="text-accent">Your space.</span> <span className="text-primary">Your community.</span>{" "}
<span className="text-secondary">Your rules.</span>
</p>
</div>
</div>
</div>
</section>
)
}