Spaces:
Runtime error
Runtime error
import { FormUpload } from "@/components/form"; | |
export default function Home() { | |
return ( | |
<> | |
<div className="border border-slate-500/20 bg-slate-950/90 backdrop-blur shadow-xl rounded-2xl w-full ring-white/10 transition-all duration-200"> | |
<header className="border-b border-slate-500/10 py-4 px-4 flex items-center justify-end gap-3"> | |
<div className="w-3 h-3 bg-indigo-500 rounded-full" /> | |
<div className="w-3 h-3 bg-teal-500 rounded-full" /> | |
</header> | |
<main className="flex justify-between gap-6 p-6"> | |
<FormUpload /> | |
</main> | |
</div> | |
</> | |
); | |
} | |