login google logo

This commit is contained in:
Виталий Лавшонок
2025-10-26 07:21:55 +03:00
parent 68a74771f3
commit 5b18fa2bd2
4 changed files with 26 additions and 11 deletions

View File

@@ -8,6 +8,7 @@ import { cn } from "../../../lib/cn";
import { setMenuActivePage } from "../../../redux/slices/store";
import { Balloon } from "../../../assets/icons/auth";
import { SecondaryButton } from "../../../components/button/SecondaryButton";
import { googleLogo } from "../../../assets/icons/input";
const Login = () => {
const dispatch = useAppDispatch();
@@ -82,9 +83,13 @@ const Login = () => {
/>
<SecondaryButton
className="w-full"
onClick={navigateToRegister}
text="Войти с Google "
/>
onClick={() => { }}
>
<div className="flex items-center">
<img src={googleLogo} className="h-[24px] w-[24px] mr-[15px]" />
Вход с Google
</div>
</SecondaryButton>
</div>

View File

@@ -10,6 +10,7 @@ import { Balloon } from "../../../assets/icons/auth";
import { Link } from "react-router-dom";
import { SecondaryButton } from "../../../components/button/SecondaryButton";
import { Checkbox } from "../../../components/checkbox/Checkbox";
import { googleLogo } from "../../../assets/icons/input";
const Register = () => {
@@ -95,8 +96,12 @@ const Register = () => {
<SecondaryButton
className="w-full"
onClick={() => { }}
text="Регистрация с Google "
/>
>
<div className="flex items-center">
<img src={googleLogo} className="h-[24px] w-[24px] mr-[15px]" />
Регистрация с Google
</div>
</SecondaryButton>
</div>