-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ajout d'un bouton pour retourner a la page d'accueil (#44)
* Update CONTRIBUTING.md * Update CONTRIBUTING.md * Update CONTRIBUTING.md * Amélioration du footer: ajout de liens fonctionnels * ajout d'un boutton dans CompnentDetails pour retourner a la page d'accueil * chore: remove unnecessary component definition You were just adding a back-to-home button, didn't need to define a new component for our "library". * refac: move the back-to-home to `page.tsx` You were displaying the `back-to-home` button in `ComponentDetails` where it was being displayed multiple times. --------- Co-authored-by: Moussa Alkaly BADJI <89929592+Alkaly02@users.noreply.github.com> Co-authored-by: Abdoulaye NDOYE <pa.ndoye@outlook.fr>
- Loading branch information
1 parent
2c8873a
commit 79ccdeb
Showing
3 changed files
with
34 additions
and
7 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
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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<footer class="mt-14 border-t border-neutral-100"> | ||
<div class="px-4 py-5 flex flex-col gap-2 items-center justify-between sm:max-w-7xl sm:mx-auto sm:flex-row md:py-8"> | ||
<span>© Galsen UI. Tous droits réservés</span> | ||
<ul class="inline-flex items-center gap-4"> | ||
<li class="text-sm"> | ||
<a href="https://www.facebook.com/watch/galsendev221/" target="_blank" rel="noopener noreferrer" class="hover:text-blue-600">Facebook</a> | ||
</li> | ||
<li class="text-sm"> | ||
<a href="https://x.com/galsendev221" target="_blank" rel="noopener noreferrer" class="hover:text-blue-400">Twitter</a> | ||
</li> | ||
<li class="text-sm"> | ||
<a href="https://github.com/GalsenDev221/" target="_blank" rel="noopener noreferrer" class="hover:text-gray-600">Github</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</footer> | ||
|