Initial commit: Expedição Gold SaaS

This commit is contained in:
Carlos
2026-06-25 00:55:34 +02:00
commit 1bf21f0754
13 changed files with 1356 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import Link from 'next/link';
export default function Home() {
return (
<div style={{ padding: '2rem', textAlign: 'center' }}>
<h1>Bem-vindo à Expedição Gold</h1>
<p>
Invista em expedições e veja seu patrimônio crescer enquanto explora
terras, mares, o espírito e o cosmos.
</p>
<div style={{ marginTop: '2rem' }}>
<Link href="/login" style={{ marginRight: '1rem' }}>Entrar</Link>
<Link href="/signup">Cadastrar-se</Link>
</div>
</div>
);
}