Files
ComfyUI_frontend/src/platform/onboarding/cloud/components/CloudTemplateFooter.vue
Jin Yi ffd2b0efab Feature/cloud reponsive (#5580)
* fix: hero title font & responsive

* chore: text center added

* chore: style modified

* chore: delete learn about button

* chore: waitlist title added
2025-09-15 00:42:39 -07:00

33 lines
822 B
Vue

<template>
<footer class="flex gap-2.5 w-5/6 h-[5%] max-h-[60px] mx-auto items-start">
<a
href="https://www.comfy.org/terms-of-service"
target="_blank"
class="text-sm text-gray-600 no-underline cursor-pointer"
>
{{ t('auth.login.termsLink') }}
</a>
<a
href="https://www.comfy.org/privacy-policy"
target="_blank"
class="text-sm text-gray-600 no-underline cursor-pointer"
>
{{ t('auth.login.privacyLink') }}
</a>
<a
href="https://support.comfy.org"
class="text-sm text-gray-600 no-underline cursor-pointer"
target="_blank"
rel="noopener noreferrer"
>
{{ t('cloudFooter_needHelp') }}
</a>
</footer>
</template>
<script setup lang="ts">
import { useI18n } from 'vue-i18n'
const { t } = useI18n()
</script>