-
Notifications
You must be signed in to change notification settings - Fork 0
Frontend : login feature #36
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
base: frontend
Are you sure you want to change the base?
Conversation
VishakhaSainani-Josh
commented
Jul 23, 2025
- Configured tailwind css
- Configured shadcn
- Added authlayout
- Added login component
Bito Automatic Review Skipped - Branch Excluded |
<Card className="hidden lg:flex w-1/2 bg-transparent relative overflow-hidden shadow-none border-none"> | ||
<div className="absolute top-8 left-8 opacity-20"> | ||
<div className="grid grid-cols-8 gap-2"> | ||
{Array.from({ length: 64 }).map((_, i) => ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why length 64?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'Open Source Contribution' | ||
].map((text, i) => ( | ||
<div | ||
key={i} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
index as key is not good practice
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, what else can I use here?
</div> | ||
|
||
<div className="space-y-6"> | ||
{[ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we move this array to constants?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes