initial commit

This commit is contained in:
jason
2026-03-12 17:09:22 -05:00
commit 4982e5392e
35 changed files with 9803 additions and 0 deletions

9
src/app/page.tsx Normal file
View File

@@ -0,0 +1,9 @@
import ReportForm from "@/components/ReportForm";
export default function Home() {
return (
<main className="min-h-screen">
<ReportForm />
</main>
);
}