diff --git a/app/ui/dashboard/nav-links.tsx b/app/ui/dashboard/nav-links.tsx index 72fa462..8a8212b 100644 --- a/app/ui/dashboard/nav-links.tsx +++ b/app/ui/dashboard/nav-links.tsx @@ -4,6 +4,8 @@ import { DocumentDuplicateIcon, } from '@heroicons/react/24/outline'; +import Link from 'next/link'; + // Map of links to display in the side navigation. // Depending on the size of the application, this would be stored in a database. const links = [ @@ -22,14 +24,14 @@ export default function NavLinks() { {links.map((link) => { const LinkIcon = link.icon; return ( -

{link.name}

-
+ ); })}