Banner.vue 676 B

1234567891011121314151617181920212223
  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="w-full justify-center px-3 py-2 mx-auto bg-rose-500">
  10. <a
  11. href="https://repo.hos.im/nyusternie/wally-dice"
  12. target="_blank"
  13. class="text-gray-100 text-center font-bold group"
  14. >
  15. <h2 class="text-xl">Wally Dice is 100% Free &amp; Open-Source Software</h2>
  16. <h3 class="text-lg group-hover:underline">https://repo.hos.im/nyusternie/wally-dice</h3>
  17. <h1 class="text-2xl">Wally Dice is still ALPHA. Use at YOUR OWN RISK!</h1>
  18. </a>
  19. </main>
  20. </template>