Merge pull request #18 from JBB0807/homepage-2nd-sprint

Homepage 2nd sprint
This commit is contained in:
JB Balahadia 2025-05-07 14:00:05 -07:00 committed by GitHub
commit f7cae6fe34
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 412 additions and 100 deletions

View file

@ -2,7 +2,6 @@ import React from "react";
function SignUpForm() {
const authUrl = import.meta.env.VITE_AUTH_URL;
const [state, setState] = React.useState({
name: "",
email: "",
@ -33,7 +32,6 @@ function SignUpForm() {
};
const googleAuth = () => {
window.open(`${authUrl}/auth/google`, "_self");
};