This commit is contained in:
Eric Ciarla
2024-07-23 15:48:12 -04:00
parent 252bc09ee2
commit a0d89169ed
24 changed files with 5893 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
"use client";
import Image from "next/image";
import StartIngestion from "@/components/startIngestion";
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<div className="z-10 w-full max-w-5xl items-center justify-between font-mono text-sm lg:flex">
<StartIngestion />
</div>
</main>
);
}