This commit is contained in:
David Arranz 2026-04-12 19:26:34 +02:00
parent 76dc9481a5
commit 4d3947c4bb

View File

@ -374,8 +374,8 @@ const colorClasses = {
export default function TailwindV4ShowcasePage() { export default function TailwindV4ShowcasePage() {
return ( return (
<div className="min-h-screen bg-background text-foreground"> <section className="min-h-screen bg-background text-foreground">
<div className="container mx-auto flex max-w-7xl flex-col gap-10 px-6 py-10"> <div className="container flex flex-col gap-10 pb-10">
<header className="space-y-3"> <header className="space-y-3">
<p className="text-sm uppercase tracking-widest text-muted-foreground">Tailwind CSS v4</p> <p className="text-sm uppercase tracking-widest text-muted-foreground">Tailwind CSS v4</p>
<h1 className="text-4xl font-bold tracking-tight">Typography + Colors Showcase</h1> <h1 className="text-4xl font-bold tracking-tight">Typography + Colors Showcase</h1>
@ -603,6 +603,6 @@ export default function TailwindV4ShowcasePage() {
</div> </div>
</div> </div>
</div> </div>
</div> </section>
); );
} }