Created navbar

This commit is contained in:
2024-09-03 19:01:03 +02:00
parent a4d77952de
commit 1fde514aaf
9 changed files with 218 additions and 2 deletions
+29
View File
@@ -0,0 +1,29 @@
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;