fixing other things

This commit is contained in:
Arjun Patel
2022-02-09 19:45:45 -08:00
parent 84e8223228
commit afb2f3974f
3 changed files with 3 additions and 3 deletions
@@ -25,7 +25,7 @@ export default function LangingPageLayout({ children }) {
function handleLogin() { function handleLogin() {
setLoading(true); setLoading(true);
router.push("/teams"); window.open("/teams/login", "_self");
} }
const getStartedButton = ( const getStartedButton = (
+1 -1
View File
@@ -1,6 +1,6 @@
export default function MainLogo({ ...props }) { export default function MainLogo({ ...props }) {
return ( return (
<span id="main-title" {...props}> <span onClick={() => window.open("/", "_self")} id="main-title" {...props}>
nirvana nirvana
</span> </span>
); );
+1 -1
View File
@@ -51,7 +51,7 @@ section {
#main-title { #main-title {
font-family: "Satisfy", cursive; font-family: "Satisfy", cursive;
@apply text-teal-600; @apply text-teal-600 cursor-pointer;
} }
#side-note { #side-note {
font-size: 1.5em; font-size: 1.5em;