Skip to content

Commit

Permalink
Update Mobile Menu Icons #64
Browse files Browse the repository at this point in the history
  • Loading branch information
ainsofs authored and westerandr committed Apr 11, 2024
1 parent ef0ad0e commit b60d51f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/lib/utils/menuItems.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IconCar } from '@tabler/icons-svelte';
import { IconHome2, IconNews, IconMail, IconCode, IconUsers } from '@tabler/icons-svelte';

export const Section = {
Hero: 'Hero',
Expand All @@ -12,26 +12,26 @@ export const menuItems = [
{
ref: `#${Section.Hero}`,
name: 'Welcome',
icon: IconCar
icon: IconHome2
},
{
ref: `#${Section.About}`,
name: 'About',
icon: IconCar
icon: IconCode
},
{
ref: `#${Section.Media}`,
name: 'Media',
icon: IconCar
icon: IconNews
},
{
ref: `#${Section.Contributors}`,
name: 'Contributors',
icon: IconCar
icon: IconUsers
},
{
ref: `#${Section.Contact}`,
name: 'Contact Us',
icon: IconCar
icon: IconMail
}
];

0 comments on commit b60d51f

Please sign in to comment.