mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-05-03 18:21:20 +00:00
19 lines
465 B
TypeScript
19 lines
465 B
TypeScript
import { Particles } from "@/components/landing/particles";
|
|
import { SignIn } 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 " />
|
|
|
|
<SignIn
|
|
appearance={{
|
|
variables: {
|
|
colorPrimary: "#161616",
|
|
colorText: "#161616",
|
|
},
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|