33 lines
614 B
JavaScript
33 lines
614 B
JavaScript
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: '...',
|
||
},
|
||
trash: {
|
||
template: '/pages/trash.html',
|
||
title: 'Trash',
|
||
description: '...',
|
||
},
|
||
personal: {
|
||
template: '/pages/personal.html',
|
||
title: 'Personal',
|
||
description: '...',
|
||
},
|
||
};
|