25 lines
597 B
Vue
25 lines
597 B
Vue
<template>
|
|
<Story title="Anchor">
|
|
<div class="text-secondaryLight text-tiny">
|
|
By signing in, you are agreeing to our
|
|
<HoppSmartAnchor
|
|
class="text-red-800 link"
|
|
to="https://docs.hoppscotch.io/support/terms"
|
|
blank
|
|
label="Terms of Service"
|
|
/>
|
|
and
|
|
<HoppSmartAnchor
|
|
class="text-red-600 link"
|
|
to="https://docs.hoppscotch.io/support/privacy"
|
|
blank
|
|
label="Privacy Policy"
|
|
/>
|
|
</div>
|
|
</Story>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { HoppSmartAnchor } from "../components/smart"
|
|
</script>
|