feat: use structured output, import CSV, bugfixes

This commit is contained in:
Vasily Zubarev
2025-03-21 18:42:14 +01:00
parent 33727a431e
commit f6dc617eae
35 changed files with 735 additions and 195 deletions

11
app/import/csv/page.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { ImportCSVTable } from "@/components/import/csv"
import { getFields } from "@/data/fields"
export default async function CSVImportPage() {
const fields = await getFields()
return (
<div className="flex flex-col gap-4 p-4">
<ImportCSVTable fields={fields} />
</div>
)
}