diff --git a/src/components/BottomNav.tsx b/src/components/BottomNav.tsx index db85f8f..df17c08 100644 --- a/src/components/BottomNav.tsx +++ b/src/components/BottomNav.tsx @@ -1,5 +1,7 @@ import { Link, useLocation } from 'react-router-dom'; -import { ScanLine, Map, Layers } from 'lucide-react'; +import { ScanLine, Map, Layers, Languages, SunMoon } from 'lucide-react'; +import { useTranslation } from "react-i18next"; +import { toggleTheme } from '../lib/theme'; const navItems = [ { to: '/scanner', icon: ScanLine, label: 'SCANNER' }, @@ -9,6 +11,7 @@ const navItems = [ export default function BottomNav() { const location = useLocation(); + const { i18n } = useTranslation(); return ( ); diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index e0d90f0..d4cb521 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -93,7 +93,7 @@ export default function Navbar() { {/* Auth Button & Theme Toggle */} -
+