import { InputField } from '@/components/ui/inputfield'; import { Button } from '@/components/ui'; import { Separator } from '@/components/ui'; import { changeUsername } from './changeusername'; import { useState } from 'react'; import AboutMe from './AboutMe'; export default function ProfilePage() { const maxLength = 250; const [about, setAbout] = useState(''); const [username, setUsername] = useState(''); const [usernameLoading, setUsernameLoading] = useState(false); return (

НИКНЕЙМ

setUsername(e.target.value)} />

АВАТАР

ТЕМА БАННЕРА

{Array.from({ length: 12 }).map((_, index) => (
))}

БАННЕР

); }