mirror of
https://github.com/soconnor0919/hristudio.git
synced 2025-12-12 15:14:44 -05:00
Form implementation, api routes
This commit is contained in:
15
src/app/forms/page.tsx
Normal file
15
src/app/forms/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user