import { GamesPage } from '../pages/games' import { HomePage } from '../pages/home' import { ModsPage } from '../pages/mods' export const appRoutes = { index: '/', home: '/home', games: '/games', mods: '/mods', about: '/about', blog: '/blog' } export const routes = [ { path: appRoutes.index, element: }, { path: appRoutes.home, element: }, { path: appRoutes.games, element: }, { path: appRoutes.mods, element: }, { path: appRoutes.about, element: }, { path: appRoutes.blog, element: } ]