12 lines
697 B
TypeScript
12 lines
697 B
TypeScript
export default function Home() {
|
|
return (
|
|
<>
|
|
<div className="flex flex-col items-center mt-32">
|
|
<p className="mb-12 text-3xl text-orange-500">CE SITE EST EN COURS DE DEVELOPPEMENT - NE SAUVEGARDEZ PAS VOS DONNÉES UNIQUEMENT SUR BRAWLSET</p>
|
|
<h1 className="text-8xl font-beleren">The BrawlSet</h1>
|
|
<p className="text-center text-stone-500 mt-12">Un système de règles MTG basé sur le mode de jeu commander et inventé à Rennes, pays de la galette saucisse.<br></br>
|
|
Pour plus d'informations allez voir les <a href="/rules" className="text-orange-500">règles</a> ou la <a href="/faq" className="text-orange-500">FAQ</a>.</p>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|