Add links to the welcome page

This commit is contained in:
Arthur Belleville 2025-07-19 15:08:44 +02:00
parent c0c7cf42d3
commit b20e08c316
No known key found for this signature in database
2 changed files with 44 additions and 0 deletions

View file

@ -39,6 +39,28 @@ export function LoginPage() {
)}
onClick={(e) => e.stopPropagation()}
>
<div className="mb-6">
<Link
to="/landing"
className="inline-flex items-center text-sm text-slate-600 dark:text-slate-400 hover:text-slate-800 dark:hover:text-slate-200 transition-colors"
>
<svg
className="w-4 h-4 mr-2"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M15 19l-7-7 7-7"
/>
</svg>
Retour à l&apos;accueil
</Link>
</div>
<h1 className="text-3xl font-bold text-slate-900 dark:text-white mb-8 text-center">
Se connecter
</h1>

View file

@ -86,6 +86,28 @@ export function SignUpPage() {
)}
onClick={(e) => e.stopPropagation()}
>
<div className="mb-6">
<Link
to="/landing"
className="inline-flex items-center text-sm text-slate-600 dark:text-slate-400 hover:text-slate-800 dark:hover:text-slate-200 transition-colors"
>
<svg
className="w-4 h-4 mr-2"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M15 19l-7-7 7-7"
/>
</svg>
Retour à l&apos;accueil
</Link>
</div>
<h1 className="text-3xl font-bold text-slate-900 dark:text-white mb-8 text-center">
Créer un compte
</h1>