Files
pastel-ui/app/page.tsx
valknarness 0d03156e04 style: standardize layout widths and padding across all pages
Ensure consistent spacing and alignment between header, main content, and footer:
- Update Navbar to use max-w-7xl and px-8 (matching Footer)
- Standardize all page containers to use px-8 py-12 padding
- Change home page from max-w-5xl to max-w-7xl for consistency
- Update all 12 pages to use consistent padding (px-8 py-12 instead of p-8)

This creates a unified visual alignment across the entire application,
with all content sections (navbar, main, footer) using the same
max-width (7xl) and horizontal padding (px-8).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-07 16:20:59 +01:00

49 lines
2.5 KiB
TypeScript

export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-center px-8 py-12 md:py-24">
<div className="max-w-7xl w-full space-y-8 text-center">
<h1 className="text-5xl md:text-6xl font-bold bg-gradient-to-r from-pink-500 via-purple-500 to-blue-500 bg-clip-text text-transparent animate-fade-in">
Pastel UI
</h1>
<p className="text-lg md:text-xl text-muted-foreground animate-slide-up">
Modern web UI for color manipulation, palette generation, and accessibility analysis
</p>
<div className="flex flex-col sm:flex-row gap-4 justify-center animate-slide-up" style={{ animationDelay: '0.1s' }}>
<a
href="/playground"
className="px-6 py-3 bg-primary text-primary-foreground rounded-lg hover:scale-105 hover:shadow-lg transition-all duration-200"
>
Open Playground
</a>
<a
href="/palettes"
className="px-6 py-3 bg-secondary text-secondary-foreground rounded-lg hover:scale-105 hover:shadow-lg transition-all duration-200"
>
Generate Palettes
</a>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-6 mt-12">
<div className="p-6 border rounded-lg bg-card hover:border-primary hover:shadow-lg transition-all duration-200 animate-scale-in" style={{ animationDelay: '0.2s' }}>
<h3 className="text-lg font-semibold mb-2">Color Playground</h3>
<p className="text-sm text-muted-foreground">
Interactive color picker with multi-format support and real-time manipulation
</p>
</div>
<div className="p-6 border rounded-lg bg-card hover:border-primary hover:shadow-lg transition-all duration-200 animate-scale-in" style={{ animationDelay: '0.3s' }}>
<h3 className="text-lg font-semibold mb-2">Palette Generation</h3>
<p className="text-sm text-muted-foreground">
Create harmony palettes, distinct colors, and smooth gradients
</p>
</div>
<div className="p-6 border rounded-lg bg-card hover:border-primary hover:shadow-lg transition-all duration-200 animate-scale-in" style={{ animationDelay: '0.4s' }}>
<h3 className="text-lg font-semibold mb-2">Accessibility Tools</h3>
<p className="text-sm text-muted-foreground">
WCAG contrast checker and color blindness simulation
</p>
</div>
</div>
</div>
</main>
);
}