feat: Revamped Authentication layer with Clerk

This commit is contained in:
Bart van der Braak 2023-06-13 00:09:59 +02:00
parent 64179b81cc
commit db122bcf59
6 changed files with 53 additions and 34 deletions

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