12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
'use client';
|
|
|
|
export default function ProfilePage() {
|
|
return (
|
|
<div className="container mx-auto p-4 w-full max-w-4xl">
|
|
<div className="text-center text-muted-foreground">
|
|
Sedang dalam pengembangan :)
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|