12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import { UserProfile } from "@/components/user-profile"
|
||
|
||
export default function ProfilePage() {
|
||
return (
|
||
<div className="container mx-auto px-4 py-8">
|
||
<h1 className="text-2xl font-bold mb-6">Личный кабинет</h1>
|
||
<UserProfile />
|
||
</div>
|
||
)
|
||
}
|
||
|