Skip to content

Commit c241d3c

Browse files
committed
Merge remote-tracking branch 'origin/master' into refactor/2024-11-12
2 parents d9d0fd7 + 6c9cc05 commit c241d3c

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

packages/web/src/app/login/page.tsx

-6
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,14 @@
22
import { getSupabaseClient } from '@src/utils/supabase.server';
33
import { LoginSection, PersonalInformationInfo } from './components';
44
import { redirect } from 'next/navigation';
5-
import { Lumiflex } from 'uvcanvas';
65

76
export default async function page() {
87
const supabaseClient = getSupabaseClient();
98
const user = await supabaseClient.auth.getUser();
109

1110
if (user?.data?.user) redirect('/memos');
12-
1311
return (
1412
<main className="relative flex h-full items-center justify-center">
15-
<div className="r-0 b-0 absolute h-full w-full">
16-
<Lumiflex />
17-
</div>
18-
1913
<LoginSection />
2014
<PersonalInformationInfo />
2115
</main>

0 commit comments

Comments
 (0)