footer.vue 1.3 KB

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <footer class="container mx-auto bg-white py-8 border-t border-gray-400">
  3. <div class="container flex px-3 py-8 ">
  4. <div class="w-full mx-auto flex flex-wrap">
  5. <div class="flex w-full lg:w-1/2 ">
  6. <div class="px-3 md:px-0">
  7. <h4 class="font-bold text-xl text-gray-900">Cosette</h4>
  8. <p class="py-4">
  9. Liberati delle tue cosette
  10. </p>
  11. </div>
  12. </div>
  13. <div class="flex w-full lg:w-1/2 lg:justify-end lg:text-right">
  14. <div class="px-3 md:px-0">
  15. <h3 class="font-bold text-xl text-gray-900">Links</h3>
  16. <ul class="list-reset items-center pt-3">
  17. <li>
  18. <a class="inline-block no-underline hover:text-black hover:underline py-1" href="https://it.hackmeeting.org">it.hackmeeting.org</a>
  19. </li>
  20. <li>
  21. <a class="inline-block no-underline hover:text-black hover:underline py-1" href="https://autistici.org/underscore">underscore_TO hacklab</a>
  22. </li>
  23. </ul>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. </footer>
  29. </template>