-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ajoute une première version de guide sur la page d'accueil
- Loading branch information
Showing
1 changed file
with
41 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,11 +111,47 @@ export default function Home() { | |
const basicStartButton = () => ( | ||
<section className="section"> | ||
<div className="container"> | ||
<div className="field is-grouped"> | ||
<div className="control"> | ||
<button className="button is-primary" onClick={() => createUser()}> | ||
Commencer | ||
</button> | ||
<div class="notification is-info"> | ||
<div class="content"> | ||
<p> | ||
Pour le moment, <strong>zSMS est en test</strong>. Pour y accéder | ||
vous devez{" "} | ||
<a href="mailto:[email protected]?subject=Test%20zSMS%20-%20Compte%20Google%20Play"> | ||
nous indiquer à [email protected] | ||
</a>{" "} | ||
l'adresse email que vous utilisez sur Google Play. Si vous avez un | ||
téléphone Android mais que vous ne passez pas par Google Play, | ||
vous pouvez{" "} | ||
<a href="mailto:[email protected]?subject=Test%20zSMS"> | ||
nous écrire | ||
</a> | ||
, nous vous mettrons l'application à disposition. | ||
</p> | ||
<p> | ||
<ol type="1"> | ||
<li> | ||
Installer l'application sur le téléphone à partir duquel vous | ||
voulez que les SMS soient envoyés. | ||
</li> | ||
<li>Associer votre téléphone à ce site internet.</li> | ||
<li>Envoyer votre premier SMS depuis votre ordinateur !</li> | ||
</ol> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div className="container"> | ||
<div class="content"> | ||
<div className="field is-grouped"> | ||
<div className="control"> | ||
<button | ||
className="button is-primary" | ||
onClick={() => createUser()} | ||
> | ||
Commencer | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|