"use client";
import { Button } from "@/components/ui/button";
import {
Card,
CardContent,
CardFooter,
CardHeader,
} from "@/components/ui/card";
import { Checkbox } from "@/components/ui/checkbox";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { EyeIcon, EyeOffIcon, Key } from "lucide-react";
import Link from "next/link";
import { JSX, SVGProps, useState } from "react";
const Logo = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => (
<svg
fill="currentColor"
height="48"
viewBox="0 0 40 48"
width="40"
{...props}
>
<clipPath id="a">
<path d="m0 0h40v48h-40z" />
</clipPath>
<g clipPath="url(#a)">
<path d="m25.0887 5.05386-3.933-1.05386-3.3145 12.3696-2.9923-11.16736-3.9331 1.05386 3.233 12.0655-8.05262-8.0526-2.87919 2.8792 8.83271 8.8328-10.99975-2.9474-1.05385625 3.933 12.01860625 3.2204c-.1376-.5935-.2104-1.2119-.2104-1.8473 0-4.4976 3.646-8.1436 8.1437-8.1436 4.4976 0 8.1436 3.646 8.1436 8.1436 0 .6313-.0719 1.2459-.2078 1.8359l10.9227 2.9267 1.0538-3.933-12.0664-3.2332 11.0005-2.9476-1.0539-3.933-12.0659 3.233 8.0526-8.0526-2.8792-2.87916-8.7102 8.71026z" />
<path d="m27.8723 26.2214c-.3372 1.4256-1.0491 2.7063-2.0259 3.7324l7.913 7.9131 2.8792-2.8792z" />
<path d="m25.7665 30.0366c-.9886 1.0097-2.2379 1.7632-3.6389 2.1515l2.8794 10.746 3.933-1.0539z" />
<path d="m21.9807 32.2274c-.65.1671-1.3313.2559-2.0334.2559-.7522 0-1.4806-.102-2.1721-.2929l-2.882 10.7558 3.933 1.0538z" />
<path d="m17.6361 32.1507c-1.3796-.4076-2.6067-1.1707-3.5751-2.1833l-7.9325 7.9325 2.87919 2.8792z" />
<path d="m13.9956 29.8973c-.9518-1.019-1.6451-2.2826-1.9751-3.6862l-10.95836 2.9363 1.05385 3.933z" />
</g>
</svg>
);
export default function SignIn() {
const [isPasswordVisible, setIsPasswordVisible] = useState<boolean>(false);
const togglePasswordVisibility = () => setIsPasswordVisible((prev) => !prev);
return (
<div className="flex items-center justify-center min-h-screen">
<Card className="w-full max-w-md mx-4 pb-0">
<CardHeader className="space-y-1 text-center mb-2 mt-4">
<div className="flex justify-center">
<Logo />
</div>
<div>
<h2 className="text-2xl font-semibold">Sign in to Acme</h2>
<p className="text-muted-foreground text-sm">
Welcome back! Please enter your details.
</p>
</div>
</CardHeader>
<CardContent className="space-y-6">
<div className="space-y-2">
<Label htmlFor="email">Email address</Label>
<Input id="email" type="email" placeholder="ephraim@blocks.so" />
</div>
<div className="space-y-0">
<div className="flex items-center justify-between mb-2">
<Label htmlFor="password">Password</Label>
<Link href="#" className="text-sm text-primary hover:underline">
Reset password
</Link>
</div>
<div className="relative">
<Input
id="password"
className="pe-9"
placeholder="Enter your password"
type={isPasswordVisible ? "text" : "password"}
/>
<button
className="text-muted-foreground/80 hover:text-foreground focus-visible:border-ring focus-visible:ring-ring/50 absolute inset-y-0 end-0 flex h-full w-9 items-center justify-center rounded-e-md transition-[color,box-shadow] outline-none focus:z-10 focus-visible:ring-[3px] disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50"
type="button"
onClick={togglePasswordVisibility}
aria-label={
isPasswordVisible ? "Hide password" : "Show password"
}
aria-pressed={isPasswordVisible}
aria-controls="password"
>
{isPasswordVisible ? (
<EyeOffIcon size={16} aria-hidden="true" />
) : (
<EyeIcon size={16} aria-hidden="true" />
)}
</button>
</div>
</div>
<div className="flex items-center space-x-2">
<Checkbox id="remember" defaultChecked />
<Label htmlFor="remember" className="text-sm font-normal">
Remember me
</Label>
</div>
<div className="space-y-2">
<Button className="w-full" type="submit">
Sign In
</Button>
<Button variant="outline" className="w-full" type="button">
<Key className="mr-2 h-4 w-4" />
Single sign-on (SSO)
</Button>
</div>
</CardContent>
<CardFooter className="flex justify-center border-t py-4!">
<p className="text-center text-sm text-muted-foreground">
New to Acme?{" "}
<Link href="#" className="text-primary hover:underline">
Sign up
</Link>
</p>
</CardFooter>
</Card>
</div>
);
}