diff --git a/components/Layouts/LandingPageLayout.tsx b/components/Layouts/LandingPageLayout.tsx index 97cfb1e..4e83fba 100644 --- a/components/Layouts/LandingPageLayout.tsx +++ b/components/Layouts/LandingPageLayout.tsx @@ -40,20 +40,18 @@ export default function LangingPageLayout({ children }) { const mobileMenu = ( - window.open(LandingPageNavigation.product, "_self")}> - Product - + Product - Features + Features - Pricing + Pricing - Philosophy + Philosophy @@ -96,9 +94,7 @@ export default function LangingPageLayout({ children }) { - window.open(LandingPageNavigation.product, "_self") - } + onClick={() => router.push(LandingPageNavigation.product)} className={`text-gray-500 hover:text-teal-600 hover:cursor-pointer ${ currPage == LandingPageNavigation.product ? "text-teal-600 underline underline-offset-4" diff --git a/pages/teams/login.tsx b/pages/teams/login.tsx index c11e721..524efd7 100644 --- a/pages/teams/login.tsx +++ b/pages/teams/login.tsx @@ -2,6 +2,7 @@ import { useRouter } from "next/router"; import { useEffect } from "react"; import { FaArrowLeft } from "react-icons/fa"; import { FcGoogle } from "react-icons/fc"; +import MainLogo from "../../components/MainLogo"; import { useAuth } from "../../contexts/authContext"; export default function Login() { @@ -19,23 +20,13 @@ export default function Login() { return ( <>
- {/* nice image on right side */} -
- {/* signin modal */}
{/* header */}
router.push("/")} + onClick={() => window.open("/", "_self")} />{" "}
@@ -60,8 +51,20 @@ export default function Login() {
- {JSON.stringify(currUser?.email)} + + © + +
+ {/* nice image on right side */} +
);