mirror of
https://github.com/Xevion/Pac-Man.git
synced 2026-01-31 10:25:06 -06:00
- 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
10 lines
298 B
TypeScript
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>
|
|
);
|
|
}
|