Update app/page.tsx
This commit is contained in:
parent
928faf82cd
commit
ca9c26d83a
|
|
@ -0,0 +1,15 @@
|
|||
import { Hero } from "@/components/hero";
|
||||
import { IncidentTypes } from "@/components/incident-types";
|
||||
import { ReportForm } from "@/components/report-form";
|
||||
import { Footer } from "@/components/footer";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<main className="min-h-screen">
|
||||
<Hero />
|
||||
<IncidentTypes />
|
||||
<ReportForm />
|
||||
<Footer />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue