11 lines
278 B
TypeScript
11 lines
278 B
TypeScript
|
|
import { ContactForm } from '@/components/contacts/ContactForm';
|
||
|
|
|
||
|
|
export default function NeuerKontaktPage() {
|
||
|
|
return (
|
||
|
|
<div className="space-y-6">
|
||
|
|
<h1 className="text-2xl font-bold text-text">Neuer Kontakt</h1>
|
||
|
|
<ContactForm mode="create" />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|