Merge branch 'dev/cedric' into dev/guerby

This commit is contained in:
gom-by
2025-01-17 15:40:06 +01:00
26 changed files with 515 additions and 97 deletions

View File

@@ -1,8 +1,15 @@
import { GalleryVerticalEnd } from "lucide-react";
import Image from "next/image";
import { LoginForm } from "@/components/login-form";
import { cookies } from "next/headers";
import { redirect } from "next/navigation";
export default async function LoginPage() {
const cookiesObj = await cookies();
const token = cookiesObj.get("auth_token")?.value;
if (token) redirect("/dashboard");
export default function LoginPage() {
return (
<div className="grid min-h-svh lg:grid-cols-2">
<div className="flex flex-col gap-4 p-6 md:p-10">
@@ -13,7 +20,9 @@ export default function LoginPage() {
</div>
</div>
<div className="relative hidden bg-muted lg:block">
<img
<Image
width={20}
height={20}
src="/placeholder.svg"
alt="Image"
className="absolute inset-0 h-full w-full object-cover dark:brightness-[0.2] dark:grayscale"