Files
Pac-Man/web/pages/index/+Layout.tsx
Xevion 65a9c6bab9 feat(web): redesign navigation with centered logo and smooth page transitions
- Replace sidebar nav with centered header featuring PAC-MAN title
- Add glimmer animation effect for non-active logo state
- Implement 200ms fade transitions between pages
- Add custom scrollbar styling with OverlayScrollbars
- Switch to Russo One font for title, Outfit for body text
2025-12-29 02:53:55 -06:00

10 lines
298 B
TypeScript

import "../../layouts/tailwind.css";
export default function GameLayout({ children }: { children: React.ReactNode }) {
return (
<div className="bg-black text-yellow-400 h-full flex flex-col overflow-hidden">
<main className="flex-1 overflow-hidden">{children}</main>
</div>
);
}