mirror of
https://github.com/linsa-io/linsa.git
synced 2026-04-23 08:48:37 +02:00
force graph, palette
This commit is contained in:
7
web/app/(auth)/layout.tsx
Normal file
7
web/app/(auth)/layout.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function AuthLayout({
|
||||
children
|
||||
}: Readonly<{
|
||||
children: React.ReactNode
|
||||
}>) {
|
||||
return <main className="h-full">{children}</main>
|
||||
}
|
||||
9
web/app/(auth)/sign-in/[[...sign-in]]/page.tsx
Normal file
9
web/app/(auth)/sign-in/[[...sign-in]]/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { SignInClient } from "@/components/custom/clerk/sign-in-client"
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<div className="flex justify-center py-24">
|
||||
<SignInClient />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
9
web/app/(auth)/sign-up/[[...sign-up]]/page.tsx
Normal file
9
web/app/(auth)/sign-up/[[...sign-up]]/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { SignUpClient } from "@/components/custom/clerk/sign-up-client"
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<div className="flex justify-center py-24">
|
||||
<SignUpClient />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user