Committing to hopefully figure out why photos aren't working in next.js

This commit is contained in:
2025-06-04 23:16:12 -05:00
parent f51e78ed2f
commit 3e0c23054a
12 changed files with 80 additions and 23 deletions

View File

@ -80,10 +80,10 @@ const Login = () => {
return (
<Card className='min-w-xs md:min-w-sm'>
<CardHeader>
<CardTitle className='text-2xl font-medium'>
<CardTitle className='text-3xl font-medium'>
Sign In
</CardTitle>
<CardDescription className='text-sm text-foreground'>
<CardDescription className='text-foreground'>
Don&apos;t have an account?{' '}
<Link className='font-medium underline' href='/sign-up'>
Sign up
@ -101,7 +101,7 @@ const Login = () => {
name='email'
render={({ field }) => (
<FormItem>
<FormLabel>Email</FormLabel>
<FormLabel className='text-lg'>Email</FormLabel>
<FormControl>
<Input type='email' placeholder='you@example.com' {...field} />
</FormControl>
@ -116,7 +116,7 @@ const Login = () => {
render={({ field }) => (
<FormItem>
<div className='flex justify-between'>
<FormLabel>Password</FormLabel>
<FormLabel className='text-lg'>Password</FormLabel>
<Link
className='text-xs text-foreground underline text-right'
href='/forgot-password'
@ -142,6 +142,7 @@ const Login = () => {
<SubmitButton
disabled={isLoading}
pendingText='Signing In...'
className='text-[1.0rem] cursor-pointer'
>
Sign in
</SubmitButton>
@ -149,7 +150,6 @@ const Login = () => {
</Form>
<Separator className='my-4' />
<SignInWithMicrosoft />
<Separator className='my-4' />
<SignInWithApple />
</CardContent>
</Card>