From d4fb34e329cbe60c68621fb34298d585506c2171 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 4 Apr 2026 01:46:38 +0200 Subject: [PATCH] Add Home link to navbar pointing to /home landing page Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/components/Navbar.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/Navbar.jsx b/frontend/src/components/Navbar.jsx index 53e84b9..fb1d64a 100644 --- a/frontend/src/components/Navbar.jsx +++ b/frontend/src/components/Navbar.jsx @@ -88,6 +88,7 @@ export default function Navbar() { const navLinks = user ? [ + { to: '/home', label: 'Home' }, { to: '/', label: 'Dashboard' }, { to: '/quizzes', label: 'Quizzes' }, { to: '/question-bank', label: 'Question Bank' },