Skip to content

feat: add login screen for mobile version #605

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@
"normalize.css": "8.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.53.0",
"react-i18next": "13.5.0",
"react-router-dom": "6.22.1",
"zod": "3.23.8",
"zustand": "4.5.1"
},
"devDependencies": {
Expand Down
19 changes: 19 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/components/Icon/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Circle from './icons/circle.svg?react';
import Close from './icons/close.svg?react';
import Discord from './icons/discord.svg?react';
import TriangleDropArrow from './icons/drop-down.svg?react';
import Email from './icons/email.svg?react';
import Facebook from './icons/facebook.svg?react';
import Hamburguer from './icons/hamburguer.svg?react';
import Instagram from './icons/instagram.svg?react';
Expand All @@ -30,6 +31,7 @@ export const icons = {
circle: Circle,
close: Close,
discord: Discord,
email: Email,
facebook: Facebook,
hamburguer: Hamburguer,
instagram: Instagram,
Expand Down
4 changes: 4 additions & 0 deletions src/components/Icon/icons/email.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/components/Icon/icons/hidden.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/pages/home/home.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { ReactNode } from 'react';

import Login from '~pages/login/login';
import isEmpty from 'lodash.isempty';

import { useSocialMediaStore } from '~stores/useSocialMediaStore/useSocialMediaStore';
Expand All @@ -21,6 +22,7 @@ function Home(): ReactNode {
<>
<div className={scss.header}>
<Header />
<Login />
</div>
<main className={scss.content}>
<aside className={scss.aside}>
Expand Down
31 changes: 31 additions & 0 deletions src/pages/login/assets/OctopusImg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading