login page

This commit is contained in:
Timofey
2025-05-19 11:54:30 +03:00
parent 695c29ab62
commit b91bd87555
12 changed files with 457 additions and 14 deletions

View File

@@ -1,4 +1,5 @@
import { StaticImageData } from 'next/image'
import { IconType } from 'react-icons'
export interface TextInputProps {
value: string
@@ -121,3 +122,14 @@ export interface PhoneInputProps {
className?: string
operatorsInfo?: boolean
}
export interface NavigationItem {
name: string
href: string
icon: IconType
}
export interface AccountSidebarProps {
user: User
navigation: NavigationItem[]
}