mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-20 00:07:04 +00:00
18 lines
468 B
TypeScript
18 lines
468 B
TypeScript
import { Separator } from "@/components/ui/separator"
|
|
import { ProfileForm } from "@app/components/profile-form"
|
|
|
|
export default function SettingsProfilePage() {
|
|
return (
|
|
<div className="space-y-8">
|
|
<div>
|
|
<h3 className="text-lg font-medium">Profile</h3>
|
|
<p className="text-sm text-muted-foreground">
|
|
This is how others will see you on the site.
|
|
</p>
|
|
</div>
|
|
<Separator />
|
|
<ProfileForm />
|
|
</div>
|
|
)
|
|
}
|