diff --git a/.eslintcache b/.eslintcache
index 9ca6d9a..c77f29d 100644
--- a/.eslintcache
+++ b/.eslintcache
@@ -1 +1 @@
-[{"/Users/victorbruce/Projects/web-development/next-starter/tailwind.config.js":"1"},{"size":776,"mtime":1663665473166,"results":"2","hashOfConfig":"3"},{"filePath":"4","messages":"5","suppressedMessages":"6","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"d63bkn","/Users/victorbruce/Projects/web-development/next-starter/tailwind.config.js",[],[]]
\ No newline at end of file
+[{"/Users/victorbruce/Projects/web-development/next-starter/tailwind.config.js":"1"},{"size":871,"mtime":1663845585796,"results":"2","hashOfConfig":"3"},{"filePath":"4","messages":"5","suppressedMessages":"6","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"d63bkn","/Users/victorbruce/Projects/web-development/next-starter/tailwind.config.js",[],[]]
\ No newline at end of file
diff --git a/src/components/DropDown/LanguageSwitcher.tsx b/src/components/DropDown/LanguageSwitcher.tsx
index 9c67986..51c02e6 100644
--- a/src/components/DropDown/LanguageSwitcher.tsx
+++ b/src/components/DropDown/LanguageSwitcher.tsx
@@ -31,7 +31,7 @@ const LanguageSwitcher = () => {
leaveFrom="transform opacity-100 scale-100"
leaveTo="transform opacity-0 scale-95"
>
-
+
{locales?.map((l) => {
return (
diff --git a/src/components/DropDown/ToggleThemeButton.tsx b/src/components/DropDown/ToggleThemeButton.tsx
index 7048a52..22996a5 100644
--- a/src/components/DropDown/ToggleThemeButton.tsx
+++ b/src/components/DropDown/ToggleThemeButton.tsx
@@ -55,7 +55,7 @@ const DropDown = (): JSX.Element | null => {
leaveFrom="transform opacity-100 scale-100"
leaveTo="transform opacity-0 scale-95"
>
-
+
{({ active }) => (
diff --git a/src/layouts/AppLayout/index.tsx b/src/layouts/AppLayout/index.tsx
index 0eea16d..8144858 100644
--- a/src/layouts/AppLayout/index.tsx
+++ b/src/layouts/AppLayout/index.tsx
@@ -3,6 +3,7 @@ import { ReactNode } from "react";
// components
import Navigation from "layouts/Navigation";
+
interface AppLayoutProps {
children: ReactNode;
}
diff --git a/src/layouts/Navigation/index.tsx b/src/layouts/Navigation/index.tsx
index 411611c..47c582c 100644
--- a/src/layouts/Navigation/index.tsx
+++ b/src/layouts/Navigation/index.tsx
@@ -1,10 +1,12 @@
+import { useState } from "react";
import Link from "next/link";
-
+import { Bars2Icon, XMarkIcon } from "@heroicons/react/20/solid";
// components
import ToggleThemeButton from "components/DropDown/ToggleThemeButton";
import LanguageSwitcher from "components/DropDown/LanguageSwitcher";
const Navigation = () => {
+ const [isMenuOpen, setIsMenuOpen] = useState(false);
return (
-
+ {isMenuOpen ? (
+
+ ) : (
+
+ )}
+
+ {/** Desktop */}
+
-
@@ -26,6 +45,31 @@ const Navigation = () => {
+
+ {/** Mobile */}
+ {isMenuOpen && (
+
+
+
+
+
+ Switch theme:
+
+
+
+ Switch language:
+
+
+
+
+
+ )}
);