feat: enhance event management with participant selection and user search functionality

This commit is contained in:
micha 2025-06-20 00:03:11 +02:00
parent 1988fc20d1
commit 3eb5b4ff1e
5 changed files with 189 additions and 69 deletions

View file

@ -4,13 +4,15 @@ import Link from 'next/link';
export function RedirectButton({
redirectUrl,
buttonText,
className,
}: {
redirectUrl: string;
buttonText: string;
className?: string;
}) {
return (
<Link href={redirectUrl}>
<Button>{buttonText}</Button>
<Button className={className}>{buttonText}</Button>
</Link>
);
}