Footer-REF.vue 633 B

123456789101112131415161718
  1. <script setup>
  2. import { ref } from 'vue'
  3. defineProps({
  4. msg: String,
  5. })
  6. const count = ref(0)
  7. </script>
  8. <template>
  9. <main class="py-3 border-t-2 border-yellow-400 flex justify-center sm:justify-end">
  10. <h3 class="mx-3 text-yellow-800 text-sm font-light">
  11. Built with <span class="text-lg text-red-500 font-bold">♡</span> by <a href="https://twitter.com/0xShomari" target="_blank" class="font-normal hover:underline">0xShomari</a>.
  12. <a href="https://repo.hos.im/nyusternie/wally-dice" target="_blank" class="font-normal hover:underline">View the source</a>.
  13. </h3>
  14. </main>
  15. </template>