import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'; import { AlertTriangle } from 'lucide-react'; import { SignUpForm } from './forms/signup-form'; interface SignUpPageProps { searchParams: Promise<{ rd?: string; }>; } export default async function SignUp({ searchParams }: SignUpPageProps) { const { rd } = await searchParams; return ( <>
Just created this dAPP? The first user to sign up will be the given the admin role. You can add other admins later. ); }