Files
voidea/webui/src/pages/FeedbackPage.tsx
T

18 lines
651 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import FeedbackForm from "../components/FeedbackForm";
import { useNavigate } from "react-router-dom";
export default function FeedbackPage() {
const navigate = useNavigate();
return (
<div className="mx-auto max-w-md">
<h1 className="mb-6 text-2xl font-bold">Обратная связь</h1>
<p className="mb-4 text-sm text-gray-500">
Расскажите нам о вашем опыте использования VoIdeaAI. Мы внимательно
читаем каждое сообщение.
</p>
<FeedbackForm pageUrl={window.location.href} onClose={() => navigate("/")} />
</div>
);
}