refactor: streamline, refine and polish

This commit is contained in:
2026-02-27 12:35:02 +01:00
parent efe3c81576
commit ee7e5ec06c
21 changed files with 606 additions and 735 deletions

View File

@@ -12,12 +12,12 @@ interface AppPageProps {
export function AppPage({ title, description, children, className }: AppPageProps) {
return (
<div className={cn("min-h-screen py-12", className)}>
<div className="max-w-7xl mx-auto px-8 space-y-8">
<div className={cn("min-h-screen py-8", className)}>
<div className="max-w-7xl mx-auto px-8 space-y-6 animate-fade-in">
<div>
<h1 className="text-4xl font-bold mb-2">{title}</h1>
<h1 className="text-2xl font-bold mb-1">{title}</h1>
{description && (
<p className="text-muted-foreground">
<p className="text-sm text-muted-foreground">
{description}
</p>
)}