Implement code changes to enhance functionality and improve performance

This commit is contained in:
faisolavolut 2025-10-23 19:44:51 +07:00
parent 4ae16f0249
commit 9934c2af9e
2 changed files with 6 additions and 6 deletions

BIN
public/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -1,16 +1,16 @@
import { GalleryVerticalEnd } from "lucide-react";
import { LoginForm } from "@/components/login-form";
export default function LoginPage() {
return (
<div className="bg-muted flex min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10">
<div className="flex w-full max-w-sm flex-col gap-6">
<a href="#" className="flex items-center gap-2 self-center font-medium">
<div className="bg-primary text-primary-foreground flex size-6 items-center justify-center rounded-md">
<GalleryVerticalEnd className="size-4" />
<a
href="#"
className="flex items-center gap-2 self-center font-medium w-full flex-row justify-center"
>
<div className="flex items-center">
<img src="/logo.png" alt="Midsuit Logo" className="h-8 w-auto" />
</div>
Midsuit
</a>
<LoginForm />
</div>