diff --git a/components/Layouts/LandingPageLayout.tsx b/components/Layouts/LandingPageLayout.tsx index e94ce54..aba8caf 100644 --- a/components/Layouts/LandingPageLayout.tsx +++ b/components/Layouts/LandingPageLayout.tsx @@ -1,7 +1,8 @@ +import { Dropdown, Menu } from "antd"; import Link from "next/link"; import { useRouter } from "next/router"; import { useState } from "react"; -import { FaAngleRight } from "react-icons/fa"; +import { FaAngleRight, FaGripHorizontal } from "react-icons/fa"; import { useAuth } from "../../contexts/authContext"; import MainLogo from "../MainLogo"; @@ -36,13 +37,64 @@ export default function LangingPageLayout({ children }) { ); + const mobileMenu = ( +
+ ); + return (