Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/PricingSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ import './pricing/fonts.css'

const { t } = useI18n()
const getStarted = () => window.location.assign('https://app.memoh.net')
const plans = computed(() => [
{ name: 'Go', price: 5, credits: 2500, tagline: t('pricing.go.tagline'), cpu: 8, ram: 16, disk: 40, members: 1 },
{ name: 'Pro', price: 60, credits: 30000, tagline: t('pricing.pro.tagline'), cpu: 16, ram: 32, disk: 120, members: 3 },
{ name: 'Premium', price: 150, credits: 75000, tagline: t('pricing.premium.tagline'), cpu: 32, ram: 64, disk: 300, members: 8 },
const plans = computed(() => [
{ name: 'Go', price: 5, credits: 2500, tagline: t('pricing.go.tagline'), cpu: 8, ram: 16, disk: 40, members: 1 },
{ name: 'Pro', price: 60, credits: 30000, tagline: t('pricing.pro.tagline'), cpu: 16, ram: 32, disk: 120, members: 3 },
Expand Down Expand Up @@ -61,10 +65,6 @@ const plans = computed(() => [
:current-label="t('pricing.currentPlan')"
:cta-label="t('pricing.cta')"
@select="getStarted"
:highlight-label="zh ? '推荐' : 'Recommended'"
:current-label="zh ? '当前套餐' : 'Current plan'"
cta-label="Get Started"
@select="getStarted(plan.code)"
/>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/locales/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
}
},
"pricing": {
"title": "Pricing",
"title": "定价",
"go": { "tagline": "从日常对话和轻量任务开始。" },
"pro": { "tagline": "为日常工作和持续运行的 Agent 准备。" },
"premium": { "tagline": "为更复杂的任务提供更多算力和空间。" },
Expand All @@ -212,7 +212,7 @@
"perMonth": "/ 月",
"recommended": "推荐",
"currentPlan": "当前套餐",
"cta": "Get Started"
"cta": "立即开始"
},
"cta_bottom": {
"title": "试试 Memoh",
Expand Down