diff --git a/backend/.env.example b/backend/.env.example index 3428104..5c59ad0 100644 --- a/backend/.env.example +++ b/backend/.env.example @@ -4,4 +4,4 @@ PORT=3001 # EMAIL_USER=user_email_id # EMAIL_PASS=16char_app_password # SEND_EMAIL=true # Uncomment this to turn on email functionality on development -# API_KEY="your google gemini api key" \ No newline at end of file +# API_KEY="your google gemini api key" diff --git a/frontend/src/components/Navbar.tsx b/frontend/src/components/Navbar.tsx index e183dfb..eaf428a 100644 --- a/frontend/src/components/Navbar.tsx +++ b/frontend/src/components/Navbar.tsx @@ -41,15 +41,15 @@ const Navbar: React.FC = ({ theme, toggleTheme }) => { const getNavLinkClass = (path: string) => { return location.pathname === path - ? "block rounded-md px-3 py-2 text-base font-medium text-gray-50 dark:text-gray-50 bg-[#2575fc]" - : "block rounded-md px-3 py-2 text-base font-medium text-gray-50 dark:text-gray-50 hover:bg-[#2575fc] "; + ? "block rounded-md px-3 py-2 text-base font-medium text-gray-50 dark:text-gray-50 bg-[#2575fc] " + : "block rounded-md px-3 py-2 text-base font-medium text-gray-50 dark:text-gray-50 hover:bg-[#2575fc] "; }; return (