import { Button, ButtonVariants } from "#/ui/Button"; import Link from "next/link"; type Props = { searchParams: { [key: string]: string | string[] | undefined }; }; export default async function Page({ searchParams }: Props) { return (

Registration successful

You are registered.

{`userId: ${searchParams["userid"]}`}
); }