mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-06-29 04:39:12 +00:00
feat: Revamped Authentication layer with Clerk
This commit is contained in:
parent
64179b81cc
commit
db122bcf59
6 changed files with 53 additions and 34 deletions
19
app/sign-up/[[...sign-up]]/page.tsx
Normal file
19
app/sign-up/[[...sign-up]]/page.tsx
Normal file
|
@ -0,0 +1,19 @@
|
|||
import { Particles } from "@/components/landing/particles";
|
||||
import { SignUp } from "@clerk/nextjs/app-beta";
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<div className="flex items-center justify-center w-screen h-screen">
|
||||
<Particles className="absolute inset-0 -z-10 " />
|
||||
|
||||
<SignUp
|
||||
appearance={{
|
||||
variables: {
|
||||
colorPrimary: "#161616",
|
||||
colorText: "#161616",
|
||||
},
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue