diff --git a/frontend/components/Navbar.tsx b/frontend/components/Navbar.tsx
index c6d99b3..5230bf5 100644
--- a/frontend/components/Navbar.tsx
+++ b/frontend/components/Navbar.tsx
@@ -6,9 +6,10 @@ import {
BoltIcon,
InboxIcon,
} from '@heroicons/react/24/solid';
-import { EnvelopeIcon } from '@heroicons/react/24/outline';
+import { EnvelopeIcon, MagnifyingGlassIcon } from '@heroicons/react/24/outline';
import { useTranslation } from 'react-i18next';
import PomodoroTimer from './Shared/PomodoroTimer';
+import UniversalSearch from './UniversalSearch/UniversalSearch';
interface NavbarProps {
isDarkMode: boolean;
@@ -33,10 +34,20 @@ const Navbar: React.FC