first commit

This commit is contained in:
2026-07-17 21:48:37 +05:30
commit f85599dac5
124 changed files with 10775 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import { SupportView } from "@/components/support/SupportView";
export default async function SupportTicketPage({ params }: { params: Promise<{ id: string }> }) {
const { id } = await params;
return <SupportView initialTicketId={id} />;
}