diff --git a/daily-thought-frontend/src/components/navigation/NavBar.tsx b/daily-thought-frontend/src/components/navigation/NavBar.tsx
index 020d54de21c79a5c11af157e7004ff2e409e0d5b..d1f27730db9b6b7658b1e4af1edacaee07215b9b 100644
--- a/daily-thought-frontend/src/components/navigation/NavBar.tsx
+++ b/daily-thought-frontend/src/components/navigation/NavBar.tsx
@@ -5,7 +5,7 @@ import { PhotoIcon, UserCircleIcon } from '@heroicons/react/24/solid'
 import { User } from '@/types/user'
 
 const navigation = [
-  { name: 'My Feed', href: '#', current: true }
+  { name: 'My Feed', href: '/feed', current: true }
 ]
 const userNavigation = [
   { name: 'Your Profile', href: '/profile' },
@@ -167,7 +167,7 @@ const NavBar: FC<PropsWithChildren<NavBarProps>> = ({
                       
                     </div>
                     <div className="ml-3">
-                      {(user?.firstName || user?.lastName) && <div className="text-base font-medium leading-none text-grey-600">{`${user?.firstName || ""} ${user?.lastName || ""}`}</div>}
+                      {user?.firstName && <div className="text-base font-medium leading-none text-grey-600">{`${user?.firstName || ""} ${user?.lastName || ""}`}</div>}
                       <div className="text-sm font-medium leading-none text-gray-400">{`@${user?.username}`}</div>
                     </div>
                     <button