feat: add PageMeta, animation classes, and layout fixes to remaining pages

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Michael Chihlas
2026-03-09 15:59:51 -04:00
parent d916531af0
commit 742c166738
15 changed files with 28 additions and 22 deletions

View File

@@ -2,7 +2,7 @@ import { Outlet } from 'react-router-dom'
export function AccountLayout() {
return (
<div className="container mx-auto max-w-(--breakpoint-lg) px-4 py-6">
<div className="overflow-y-auto h-full container mx-auto max-w-(--breakpoint-lg) px-4 py-6">
<Outlet />
</div>
)

View File

@@ -19,7 +19,7 @@ export function ViewTransitionOutlet() {
const routeKey = segments.slice(0, 2).join('/') || '/'
return (
<div key={routeKey} className="flex-1 min-h-0 overflow-y-auto animate-fade-in-up">
<div key={routeKey} className="flex-1 min-h-0 animate-fade-in-up">
<Outlet />
</div>
)