a2s.su/app/assets/js/routes.js

23 lines
415 B
JavaScript
Raw Normal View History

2023-08-03 21:52:50 +03:00
export const routes = {
404: {
template: '/pages/404.html',
title: '404',
description: 'Page not found',
},
'/': {
template: '/pages/home.html',
title: 'a2s',
description: '...',
},
about: {
template: '/pages/about.html',
title: 'О сайте',
description: '...',
},
games: {
template: '/pages/games.html',
title: 'Games',
description: '...',
},
};