Add feedback functionality to EventsPageSection: Integrate FeedbackModal for event feedback submission, allowing users to provide feedback on selected events. Update event handling to manage feedback state and improve user interaction.

This commit is contained in:
Julien Froidefond
2025-12-10 12:06:30 +01:00
parent 80e9d953ae
commit 9fde18a35e
3 changed files with 311 additions and 3 deletions

5
app/feedback/layout.tsx Normal file
View File

@@ -0,0 +1,5 @@
import type { ReactNode } from "react";
export default function FeedbackLayout({ children }: { children: ReactNode }) {
return <>{children}</>;
}