Form implementation, api routes

This commit is contained in:
2024-09-26 16:04:57 -04:00
parent 66137ff7b4
commit 6584a48f27
23 changed files with 663 additions and 214 deletions

15
src/app/forms/page.tsx Normal file
View File

@@ -0,0 +1,15 @@
import Layout from "~/components/layout";
import { FormsGrid } from "~/components/forms/FormsGrid";
import { UploadFormButton } from "~/components/forms/UploadFormButton";
export default function FormsPage() {
return (
<Layout>
<div className="flex justify-between items-center mb-6">
<h1 className="text-3xl font-bold">Forms</h1>
<UploadFormButton />
</div>
<FormsGrid />
</Layout>
);
}