14 lines
393 B
TypeScript
14 lines
393 B
TypeScript
"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>
|
|
);
|
|
}
|