Skip to content

Commit

Permalink
add donate to mobile header
Browse files Browse the repository at this point in the history
  • Loading branch information
nlebovits committed Oct 18, 2024
1 parent fce9524 commit 5db39fb
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/components/MobileNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ import {
NavbarMenu,
NavbarMenuToggle,
} from '@nextui-org/react';
import { PiBinoculars, PiKey, PiTree, PiInfo, PiList } from 'react-icons/pi';
import {
PiBinoculars,
PiKey,
PiTree,
PiInfo,
PiList,
PiHeart,
} from 'react-icons/pi';
import Image from 'next/image';
import React, { FC } from 'react';
import IconLink from './IconLink';
Expand Down Expand Up @@ -74,6 +81,11 @@ const MobileNav: FC = () => {
text="About"
href="/about"
/>
<IconLink
icon={<PiHeart className="h-6 w-6" />}
text="Donate"
href="/donate"
/>
</NavbarMenu>
</Navbar>
);
Expand Down

0 comments on commit 5db39fb

Please sign in to comment.