feat(events): add event creation form components

This commit is contained in:
micha 2025-06-25 13:10:27 +02:00
parent 1a332a9373
commit 51fe42374d
24 changed files with 1868 additions and 61 deletions

View file

@ -1,16 +1,18 @@
import { Button } from '../ui/button';
import { Button } from '@/components/ui/button';
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>
);
}