mirror of
https://github.com/Xevion/Pac-Man.git
synced 2026-01-31 06:25:09 -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
15 lines
508 B
TypeScript
15 lines
508 B
TypeScript
export default function Page() {
|
|
return (
|
|
<div className="mx-auto max-w-3xl py-8 px-4">
|
|
<div className="space-y-6">
|
|
<div className="border border-yellow-400/20 rounded-md bg-transparent p-6 shadow-[0_4px_20px_rgba(250,204,21,0.08)]">
|
|
<h2 className="text-2xl font-bold mb-4">Download Pac-Man</h2>
|
|
<p className="text-gray-300 mb-4">
|
|
Download instructions and releases will be available here soon.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|