payments card and separated /support url

This commit is contained in:
Timofey
2025-05-22 16:08:40 +03:00
parent 6963fdb17a
commit 29d3af2ea1
16 changed files with 481 additions and 31 deletions

View File

@@ -24,6 +24,7 @@ export interface ButtonProps {
leftIcon?: React.ReactNode
rightIcon?: React.ReactNode
type?: 'button' | 'submit' | 'reset'
disabled?: boolean
}
export interface SearchCardProps {
@@ -215,3 +216,12 @@ export interface CheckboxProps {
disabledText: string
enabledText: string
}
export interface PricingCardProps {
plan: 'free' | 'pro' | 'premium'
price: number
features: string[]
isPopular?: boolean
isActive?: boolean
onPlanChange?: () => void
}