import { useTheme } from 'next-themes'; import Link from 'next/link'; import { useTranslation } from 'next-i18next'; import React, { FC } from 'react'; import { BiMoon } from 'react-icons/bi'; import { ImSun } from 'react-icons/im'; import styles from './Navbar.module.scss'; import { ProfileImage } from '@svg/index'; const Navbar: FC = () => { const { theme, setTheme } = useTheme(); const switchTheme = (): void => setTheme(theme == 'dark' ? 'light' : 'dark'); return ( ); }; export default Navbar;