11 lines
294 B
TypeScript
11 lines
294 B
TypeScript
|
|
export default function Upload() {
|
||
|
|
return (
|
||
|
|
<main className="min-h-full flex items-center justify-center p-6">
|
||
|
|
<div className="text-center text-stone-700">
|
||
|
|
<h2 className="font-display text-3xl mb-3">Enviar fotos</h2>
|
||
|
|
<p>Em breve.</p>
|
||
|
|
</div>
|
||
|
|
</main>
|
||
|
|
);
|
||
|
|
}
|