mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 06:28:37 +00:00
* feat(form): add form component * feat(www): update site styles * feat: add form examples * docs(www): add docs for forms * docs(www): hide tabs for docs demo
18 lines
473 B
TypeScript
18 lines
473 B
TypeScript
import { Separator } from "@/components/ui/separator"
|
|
import { ProfileForm } from "@/app/examples/forms/profile-form"
|
|
|
|
export default function SettingsProfilePage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<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>
|
|
)
|
|
}
|