diff --git a/packages/web/components/Layouts/LandingPageLayout.tsx b/packages/web/components/Layouts/LandingPageLayout.tsx index 3f6561e..f866d0a 100644 --- a/packages/web/components/Layouts/LandingPageLayout.tsx +++ b/packages/web/components/Layouts/LandingPageLayout.tsx @@ -25,7 +25,7 @@ export default function LangingPageLayout({ children }) { function handleLogin() { setLoading(true); - router.push("/teams"); + window.open("/teams/login", "_self"); } const getStartedButton = ( diff --git a/packages/web/components/Logo/MainLogo.tsx b/packages/web/components/Logo/MainLogo.tsx index 3abee46..eb7ec28 100644 --- a/packages/web/components/Logo/MainLogo.tsx +++ b/packages/web/components/Logo/MainLogo.tsx @@ -1,6 +1,6 @@ export default function MainLogo({ ...props }) { return ( - + window.open("/", "_self")} id="main-title" {...props}> nirvana ); diff --git a/packages/web/styles/globals.css b/packages/web/styles/globals.css index 9ebd880..eb69ac3 100644 --- a/packages/web/styles/globals.css +++ b/packages/web/styles/globals.css @@ -51,7 +51,7 @@ section { #main-title { font-family: "Satisfy", cursive; - @apply text-teal-600; + @apply text-teal-600 cursor-pointer; } #side-note { font-size: 1.5em;