import { signup } from '@/app/login/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 RegisterPage({ searchParams, }: { searchParams: Promise<{ [key: string]: string | string[] | undefined }> }) { const resolvedParams = await searchParams const error = resolvedParams?.error const message = resolvedParams?.message return (
{error && message && }

Aramıza Katılın

Kişisel yaşam alanınızı oluşturmak için kayıt olun

veya
Zaten hesabınız var mı?{' '} Giriş Yap
MindSpace Background
MindSpace Logo
) }