Anchor.story.vue 597 B

123456789101112131415161718192021222324
  1. <template>
  2. <Story title="Anchor">
  3. <div class="text-secondaryLight text-tiny">
  4. By signing in, you are agreeing to our
  5. <HoppSmartAnchor
  6. class="text-red-800 link"
  7. to="https://docs.hoppscotch.io/support/terms"
  8. blank
  9. label="Terms of Service"
  10. />
  11. and
  12. <HoppSmartAnchor
  13. class="text-red-600 link"
  14. to="https://docs.hoppscotch.io/support/privacy"
  15. blank
  16. label="Privacy Policy"
  17. />
  18. </div>
  19. </Story>
  20. </template>
  21. <script setup lang="ts">
  22. import { HoppSmartAnchor } from "../components/smart"
  23. </script>