mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-19 05:54:06 +01:00
32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
import Image from "next/image";
|
||
import { Button } from "@/components/ui/button";
|
||
import { Card, CardContent, CardFooter, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
||
|
||
import { LoginButton } from "@/components/auth/loginButton";
|
||
import { LogoutButton } from "@/components/auth/logoutButton";
|
||
|
||
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 font-semibold text-slate-800">Continue With</p>
|
||
<LoginButton />
|
||
<LogoutButton />
|
||
</CardContent>
|
||
<CardFooter className="text-xs justify-center">
|
||
By signing up, you agree to the Terms of Service and acknowledge you’ve read our Privacy Policy.
|
||
</CardFooter>
|
||
</Card>
|
||
</div>
|
||
);
|
||
}
|