Files
deckyvault/lib/routes.ts
T

66 lines
1.1 KiB
TypeScript

export const routes = [
{
title: "Home",
href: "/",
},
{
title: "Search",
href: "/search",
},
{
title: "Games",
href: "/games",
},
{
title: "Compare",
href: "/compare",
},
{
title: "Devices",
href: "/devices",
},
{
title: "Updates",
href: "/updates",
},
{
title: "Contact",
href: "/contact",
},
// TODO: Add back when about page is implemented
// {
// title: "About",
// href: "/about",
// }
]
export const authRoutes = [
{
title: "Profile",
href: "/profile",
icon: "User",
},
{
title: "Saved Games",
href: "/profile?tab=saved",
icon: "Bookmark",
},
]
export const adminRoutes = [
{
title: "Users",
href: "/admin/users",
icon: "Users",
},
{
title: "Hardware",
href: "/admin/hardware",
icon: "Cpu",
},
{
title: "Games",
href: "/admin/games",
icon: "Gamepad2",
},
]