Skip to content

Commit d853ab1

Browse files
committed
feat: update navigation menu labels and align dropdown to start
1 parent 43bedf1 commit d853ab1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/Navigation/DesktopNavigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const DesktopNavigation = () => {
3737
<FaChevronDown className="ml-1 h-4 w-4" aria-hidden="true" />
3838
</DropdownMenuTrigger>
3939
<DropdownMenuContent
40-
align="end"
40+
align="start"
4141
className={item.name === 'events' ? 'max-h-[60vh] w-56 overflow-y-auto' : 'w-56'}
4242
>
4343
{item.dropdown.map((dropdownItem, index) => {

src/content/menuLinks.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ export const menuLinks: MenuLink[] = [
2828
external: true,
2929
},
3030
{
31-
name: 'events',
31+
name: '🏙️ cities',
3232
href: '/events',
3333
current: false,
3434
external: false,
3535
dropdown: [
3636
{
37-
name: 'All Events',
37+
name: 'All Cities',
3838
href: '/events',
3939
type: 'link',
4040
},
@@ -51,7 +51,7 @@ export const menuLinks: MenuLink[] = [
5151
],
5252
},
5353
{
54-
name: 'discounts',
54+
name: '💰 discounts',
5555
href: '/discounts',
5656
current: false,
5757
external: false,

0 commit comments

Comments
 (0)