first commit
This commit is contained in:
commit
4b98219bf7
144 changed files with 31561 additions and 0 deletions
21
frontend/app/sign-in/[[...sign-in]]/page.tsx
Normal file
21
frontend/app/sign-in/[[...sign-in]]/page.tsx
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import { SignIn } from "@clerk/nextjs";
|
||||
import { Database } from "lucide-react";
|
||||
|
||||
export default function SignInPage() {
|
||||
return (
|
||||
<div className="flex min-h-screen items-center justify-center bg-background">
|
||||
<div className="flex flex-col items-center gap-8">
|
||||
<div className="flex items-center gap-3">
|
||||
<div className="flex items-center justify-center w-10 h-10 rounded-xl bg-primary">
|
||||
<Database className="w-5 h-5 text-primary-foreground" />
|
||||
</div>
|
||||
<div>
|
||||
<p className="text-lg font-bold tracking-tight">DemoBMS</p>
|
||||
<p className="text-xs text-muted-foreground">Infrastructure Management</p>
|
||||
</div>
|
||||
</div>
|
||||
<SignIn />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue