'use client' import {useState} from 'react' import {Input} from '@/components/ui/input' import {Textarea} from '@/components/ui/textarea' import {Button} from '@/components/ui/button' import {motion as m} from 'framer-motion' import {CheckCircle} from 'lucide-react' export default function KontaktPage() { const [success, setSuccess] = useState(false) const [loading, setLoading] = useState(false) const handleSubmit = (e: React.FormEvent) => { e.preventDefault() setLoading(true) // Simulate delay setTimeout(() => { setLoading(false) setSuccess(true) }, 1000) } return (

Kontakt

Sie haben Fragen? Schreiben Sie uns direkt über das Formular.

{success ? (

Vielen Dank! Ihre Nachricht wurde erfolgreich gesendet.

) : (