From 5db39fbd6180182205c704cd5e1f91c60c63a55d Mon Sep 17 00:00:00 2001 From: nlebovits Date: Thu, 17 Oct 2024 22:06:38 -0400 Subject: [PATCH] add donate to mobile header --- src/components/MobileNav.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/components/MobileNav.tsx b/src/components/MobileNav.tsx index 293c5c90..122fe205 100644 --- a/src/components/MobileNav.tsx +++ b/src/components/MobileNav.tsx @@ -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'; @@ -74,6 +81,11 @@ const MobileNav: FC = () => { text="About" href="/about" /> + } + text="Donate" + href="/donate" + /> );