Skip to content

Commit

Permalink
add navlink to icons in about view+
Browse files Browse the repository at this point in the history
  • Loading branch information
GrannyYetta committed Oct 12, 2024
1 parent c260384 commit a54011f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/views/About.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { FaGithub, FaShareAlt, FaHome } from 'react-icons/fa';
import { DeveloperCard } from '../components/DeveloperCard';
import { NavLink } from 'react-router-dom';

export function About() {
return (
Expand All @@ -20,7 +21,9 @@ export function About() {
Create a List (if you don't already have one), click on an
existing one or manage your lists in{' '}
<span className="inline-flex items-center">
<FaHome className="mr-1" />
<NavLink to="/">
<FaHome className="mr-1" />
</NavLink>
Home
</span>
</li>
Expand All @@ -37,7 +40,10 @@ export function About() {
wish. Just click on{' '}
<span className="inline-flex items-center">
{' '}
<FaShareAlt className="mr-1" />
<NavLink to="/manage-list">
{' '}
<FaShareAlt className="mr-1" />
</NavLink>
Share{' '}
</span>
</li>
Expand Down

0 comments on commit a54011f

Please sign in to comment.