feat: 产品页面搭建

This commit is contained in:
Gsh
2025-06-18 23:28:27 +08:00
parent 8a8e69596a
commit 890727d495
8 changed files with 637 additions and 4 deletions

View File

@@ -0,0 +1,28 @@
// 创建产品类型定义
export interface ProductFeature {
icon: string
title: string
description: string
}
export interface PricingPlan {
name: string
price: number
period: string
features: string[]
isPopular?: boolean
}
export interface Product {
id: string
name: string
title: string
description: string
highlight: string
features: ProductFeature[]
pricing: PricingPlan[]
faqs: {
question: string
answer: string
}[]
}