From 8692b9828f0ac7390497121c225eae1c7b20e47d Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Sun, 26 Apr 2026 09:35:30 -0500 Subject: [PATCH] feat: add profile and saved games routes --- lib/routes.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lib/routes.ts b/lib/routes.ts index 6947b4a..5fe9f98 100644 --- a/lib/routes.ts +++ b/lib/routes.ts @@ -26,4 +26,17 @@ export const routes = [ // title: "About", // href: "/about", // } +] + +export const authRoutes = [ + { + title: "Profile", + href: "/profile", + icon: "User", + }, + { + title: "Saved Games", + href: "/profile?tab=saved", + icon: "Bookmark", + }, ] \ No newline at end of file