30 lines
484 B
JavaScript
30 lines
484 B
JavaScript
import AccountIcon from '@/assets/AccountIcon';
|
|
import HeartIcon from '@/assets/HeartIcon';
|
|
import MapIcon from '@/assets/MapIcon';
|
|
import PeopleIcon from '@/assets/PeopleIcon';
|
|
|
|
const config = [
|
|
{
|
|
title: 'Carte',
|
|
link: '/',
|
|
icon: MapIcon,
|
|
},
|
|
{
|
|
title: 'Mes loves',
|
|
link: '/my-loves',
|
|
icon: HeartIcon,
|
|
},
|
|
{
|
|
title: 'Partenaire',
|
|
link: '/partner',
|
|
icon: PeopleIcon,
|
|
},
|
|
{
|
|
title: 'Compte',
|
|
link: '/account',
|
|
icon: AccountIcon,
|
|
},
|
|
];
|
|
|
|
export default config;
|