16 lines
381 B
TypeScript
16 lines
381 B
TypeScript
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>
|
|
);
|
|
}
|