diff --git a/frontend/src/pages/HomePage.tsx b/frontend/src/pages/HomePage.tsx
index 1084fa5..610f4ab 100644
--- a/frontend/src/pages/HomePage.tsx
+++ b/frontend/src/pages/HomePage.tsx
@@ -1,3 +1,5 @@
+import { Link } from 'react-router-dom'
+
export default function HomePage() {
return (
@@ -11,18 +13,19 @@ export default function HomePage() {
{[
- { label: 'Todos', icon: 'list', path: '/todos' },
+ { label: 'Todos', icon: 'list-check', path: '/todos' },
{ label: 'Courses', icon: 'cart-shopping', path: '/shopping' },
{ label: 'Notes', icon: 'note-sticky', path: '/notes' },
].map((item) => (
-
{item.label}
-
+
))}