import { login } from './actions' import { Button } from '@/components/ui/button' import { Input } from '@/components/ui/input' import { Label } from '@/components/ui/label' import Link from 'next/link' import { ErrorToaster } from '@/components/error-toaster' import Image from 'next/image' import { Icon } from '@/components/ui/icon' export default async function LoginPage({ searchParams, }: { searchParams: Promise<{ [key: string]: string | string[] | undefined }> }) { const resolvedParams = await searchParams; const error = resolvedParams?.error; const message = resolvedParams?.message; return (
{error && message && } {/* Sol Taraf - Resim Alanı */}
MindSpace Background
{/* Logo */}
MindSpace Logo
{/* Sağ Taraf - Form Alanı */}

Tekrar Hoş Geldiniz

Kişisel alanınıza ulaşmak için giriş yapın

Şifremi unuttum
veya
Hesabınız yok mu?{" "} Kayıt Ol
); }