-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: add LogginCard #50
Conversation
Deploying school-festival-2024 with Cloudflare Pages
|
app/components/LogginCard.tsx
Outdated
className, | ||
)} | ||
> | ||
<h1 className={cn(className)}>名前を入力して登録!</h1> |
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.
<h1 className={cn(className)}>名前を入力して登録!</h1> | |
<h1 className="text-2xl drop-shadow-base">名前を入力して登録!</h1> |
app/components/LogginCard.tsx
Outdated
return ( | ||
<Card | ||
className={cn( | ||
"flex flex-col items-center gap-y-4 p-4 text-[24px]", |
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.
"flex flex-col items-center gap-y-4 p-4 text-[24px]", | |
"flex flex-col items-center gap-y-4 p-4", |
app/components/LogginCard.tsx
Outdated
)} | ||
> | ||
<h1 className={cn(className)}>名前を入力して登録!</h1> | ||
<Input placeholder="名前" className={cn("text-[16px]", className)} /> |
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.
<Input placeholder="名前" className={cn("text-[16px]", className)} /> | |
<Input placeholder="名前" /> |
app/components/LogginCard.tsx
Outdated
> | ||
<h1 className={cn(className)}>名前を入力して登録!</h1> | ||
<Input placeholder="名前" className={cn("text-[16px]", className)} /> | ||
<Button type="submit" className={cn("text-[16px]", className)}> |
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.
<Button type="submit" className={cn("text-[16px]", className)}> | |
<Button type="submit"> |
SSIA