mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-18 13:34:06 +01:00
Add login page
This commit is contained in:
parent
d7af1f8af4
commit
747562a4bb
BIN
public/login.png
Normal file
BIN
public/login.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.4 MiB |
25
src/app/login/page.tsx
Normal file
25
src/app/login/page.tsx
Normal file
@ -0,0 +1,25 @@
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Card, CardContent, CardFooter, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
|
||||
export default function Login() {
|
||||
return (
|
||||
<div
|
||||
className="bg-cover bg-center min-h-screen flex items-center justify-center"
|
||||
style={{ backgroundImage: "url(/login.png)" }}>
|
||||
<Card>
|
||||
<CardHeader className="items-center">
|
||||
<CardTitle className="text-2xl font-bold">Empower Your Vision</CardTitle>
|
||||
<CardDescription>
|
||||
Unlock opportunities and connect with a community of passionate investors and innovators.
|
||||
</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent className="flex flex-col gap-y-2 mx-28">
|
||||
<p className="self-center">Continue With</p>
|
||||
<Button>Continue with Google</Button>
|
||||
<Button>Continue with Facebook</Button>
|
||||
</CardContent>
|
||||
<CardFooter></CardFooter>
|
||||
</Card>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user