Skip to content

Commit

Permalink
feat(footer): wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Neox63 committed Jun 28, 2024
1 parent 39e4661 commit 3d57345
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
9 changes: 9 additions & 0 deletions components/Organisms/Footer.stories.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import Footer from './Footer.twig';

export default {
title: 'Design System/Organisms/Footer'
};

export const base = {
render: (args) => Footer(args)
};
22 changes: 22 additions & 0 deletions components/Organisms/Footer.twig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<footer class="bg-white flex justify-between border-t border-t-grey-medium py-4 px-7">
<p class="text-2xs text-lightCharbon">&copy; <span class="font-semibold text-mediumCharbon">Thelia 2024</span>
- Version 2.5.0
- <a href="http://www.openstudio.fr/" target="_blank">Made with ❤️ by OpenStudio</a>
</p>

{# {hook name="main.in-footer" location="in_footer" } #}

<div class="flex gap-[10px] justify-center items-center text-mediumCharbon">
<a href="https://github.com/thelia/thelia" target="_blank" class="w-5 h-5">
{{ source("/icons/plus.svg") }}
</a>

<a href="https://x.com/theliaecommerce" target="_blank" class="w-5 h-5">
{{ source("/icons/plus.svg") }}
</a>

<a href="https://www.facebook.com/theliaecommerce" target="_blank" class="w-5 h-5">
{{ source("/icons/plus.svg") }}
</a>
</div>
</footer>

0 comments on commit 3d57345

Please sign in to comment.