route handlers for account/main

This commit is contained in:
2025-05-19 16:56:30 +03:00
parent edd380d78a
commit c0da94f3dc
22 changed files with 601 additions and 150 deletions

View File

@@ -135,3 +135,21 @@ export interface AccountSidebarProps {
user: User
navigation: NavigationItem[]
}
export interface TelegramMessage {
source: string
name: string
phone_number: string
message: string
}
export type SourceType = 'account' | 'contact-us'
export interface TextAreaProps {
value: string
handleChange: (e: React.ChangeEvent<HTMLTextAreaElement>) => void
label: string
name: string
placeholder: string
height?: string | number
}