Files
expedicao-gold/pages/index.js
T
2026-06-25 00:55:34 +02:00

17 lines
522 B
JavaScript

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>
);
}