mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-24 14:45:36 +00:00
## Summary
Update website copy: fix branding ("Comfy" → "ComfyUI"), correct pricing
runtime, remove "coming soon" seat features, and shorten use-case label.
## Changes
- **What**: Copy corrections in `translations.ts` (branding, runtime "60
min" → "30 min" for Standard plan, remove placeholder seat features for
Creator/Pro plans); trim feature arrays in `PriceSection.vue`
## Review Focus
Verify zh-CN translations still make sense after the English copy
changes (runtime string not updated in zh-CN).
┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-11567-content-website-copy-and-pricing-updates-34b6d73d365081c29af8ee1469b08358)
by [Unito](https://www.unito.io)
---------
Co-authored-by: Amp <amp@ampcode.com>
Co-authored-by: github-actions <github-actions@github.com>
51 lines
1.1 KiB
Vue
51 lines
1.1 KiB
Vue
<script setup lang="ts">
|
|
import { cn } from '@comfyorg/tailwind-utils'
|
|
|
|
const { playing = false, size = 'md' } = defineProps<{
|
|
playing?: boolean
|
|
size?: 'sm' | 'md'
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<button
|
|
type="button"
|
|
:class="
|
|
cn(
|
|
'bg-primary-comfy-yellow flex shrink-0 cursor-pointer items-center justify-center rounded-xl',
|
|
size === 'sm' ? 'size-8 lg:size-10' : 'size-12'
|
|
)
|
|
"
|
|
>
|
|
<svg
|
|
v-if="playing"
|
|
:class="
|
|
cn(
|
|
'text-primary-comfy-ink',
|
|
size === 'sm' ? 'size-3 lg:size-4' : 'size-4'
|
|
)
|
|
"
|
|
viewBox="0 0 24 24"
|
|
fill="currentColor"
|
|
aria-hidden="true"
|
|
>
|
|
<rect x="6" y="4" width="4" height="16" />
|
|
<rect x="14" y="4" width="4" height="16" />
|
|
</svg>
|
|
<svg
|
|
v-else
|
|
:class="
|
|
cn(
|
|
'text-primary-comfy-ink ml-0.5',
|
|
size === 'sm' ? 'size-3 lg:size-4' : 'size-4'
|
|
)
|
|
"
|
|
viewBox="0 0 24 24"
|
|
fill="currentColor"
|
|
aria-hidden="true"
|
|
>
|
|
<path d="M8 5v14l11-7z" />
|
|
</svg>
|
|
</button>
|
|
</template>
|