feat: add profile and saved games routes

This commit is contained in:
2026-04-26 09:35:30 -05:00
parent 3f955e63c3
commit 8692b9828f
+13
View File
@@ -26,4 +26,17 @@ export const routes = [
// title: "About", // title: "About",
// href: "/about", // href: "/about",
// } // }
]
export const authRoutes = [
{
title: "Profile",
href: "/profile",
icon: "User",
},
{
title: "Saved Games",
href: "/profile?tab=saved",
icon: "Bookmark",
},
] ]