force graph, palette

This commit is contained in:
Nikita
2024-08-30 16:19:29 +03:00
parent 9e89959dd4
commit 32352ca5f4
38 changed files with 1602 additions and 243 deletions

View File

@@ -0,0 +1,7 @@
export default function AuthLayout({
children
}: Readonly<{
children: React.ReactNode
}>) {
return <main className="h-full">{children}</main>
}

View 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>
)
}

View 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>
)
}