We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d9d0fd7 + 6c9cc05 commit c241d3cCopy full SHA for c241d3c
packages/web/src/app/login/page.tsx
@@ -2,20 +2,14 @@
2
import { getSupabaseClient } from '@src/utils/supabase.server';
3
import { LoginSection, PersonalInformationInfo } from './components';
4
import { redirect } from 'next/navigation';
5
-import { Lumiflex } from 'uvcanvas';
6
7
export default async function page() {
8
const supabaseClient = getSupabaseClient();
9
const user = await supabaseClient.auth.getUser();
10
11
if (user?.data?.user) redirect('/memos');
12
-
13
return (
14
<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
19
<LoginSection />
20
<PersonalInformationInfo />
21
</main>
0 commit comments