chore: rename tabs, declare routes, use icons for tabs; layout updates
This commit is contained in:
parent
f5d689117a
commit
484f773e8a
3 changed files with 29 additions and 27 deletions
|
|
@ -5,52 +5,52 @@ export const state = () => ({
|
|||
activeTabIndex: 0,
|
||||
tabs: [
|
||||
{
|
||||
id: 'instruments',
|
||||
label: '1',
|
||||
title: 'Instruments',
|
||||
route: '/',
|
||||
label: 'fas fa-clock',
|
||||
title: 'Timekeeping Instruments',
|
||||
darkColor: 'yellow-600',
|
||||
lightColor: 'yellow-200',
|
||||
locked: false,
|
||||
},
|
||||
{
|
||||
id: 'upgrades',
|
||||
label: '2',
|
||||
title: 'Upgrades',
|
||||
route: '/apprentices',
|
||||
label: 'fas fa-user-friends',
|
||||
title: 'Apprentices',
|
||||
darkColor: 'blue-600',
|
||||
lightColor: 'blue-200',
|
||||
locked: false,
|
||||
},
|
||||
{
|
||||
id: 'missions',
|
||||
label: '3',
|
||||
route: '/missions',
|
||||
label: 'fas fa-th-list',
|
||||
title: 'Missions',
|
||||
darkColor: 'violet-600',
|
||||
lightColor: 'violet-200',
|
||||
locked: true,
|
||||
locked: false,
|
||||
},
|
||||
{
|
||||
id: 'timemachine',
|
||||
label: '4',
|
||||
route: '/timemachine',
|
||||
label: 'fas fa-fast-forward',
|
||||
title: 'Time Machine',
|
||||
darkColor: 'lime-600',
|
||||
lightColor: 'lime-200',
|
||||
locked: true,
|
||||
locked: false,
|
||||
},
|
||||
{
|
||||
id: 'achievements',
|
||||
label: '5',
|
||||
route: '/timemagic',
|
||||
label: 'fas fa-eye',
|
||||
title: 'Time Magic',
|
||||
darkColor: 'orange-600',
|
||||
lightColor: 'orange-200',
|
||||
locked: true,
|
||||
locked: false,
|
||||
},
|
||||
{
|
||||
id: 'prestige',
|
||||
label: '6',
|
||||
title: 'Etc.',
|
||||
route: '/wisdom',
|
||||
label: 'fas fa-book-open',
|
||||
title: 'Wisdom',
|
||||
darkColor: 'teal-600',
|
||||
lightColor: 'teal-200',
|
||||
locked: true,
|
||||
locked: false,
|
||||
},
|
||||
],
|
||||
currency: new Decimal(0),
|
||||
|
|
|
|||
Reference in a new issue