import Link from "next/link" export default function ProfilePage() { return (

My Profile

{/* Avatar */}
👤
Guest User
Not logged in
Login
{/* Menu items */}
{[ { icon: "🏆", label: "My Bets", href: "/history" }, { icon: "💰", label: "Deposit", href: "/deposit" }, { icon: "🎁", label: "Bonus", href: "/bonus" }, { icon: "🔔", label: "Notifications", href: "/notifications" }, { icon: "📋", label: "Rules", href: "/rules" }, ].map((item) => (
{item.icon} {item.label}
))}
) }