mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-02 00:36:38 +00:00
19 lines
491 B
TypeScript
19 lines
491 B
TypeScript
import { Separator } from "@/components/ui/separator"
|
|
import { AccountForm } from "./account-form"
|
|
|
|
export default function SettingsAccountPage() {
|
|
return (
|
|
<div className="space-y-8">
|
|
<div>
|
|
<h3 className="text-lg font-medium">Account</h3>
|
|
<p className="text-sm text-muted-foreground">
|
|
Update your account settings. Set your preferred language and
|
|
timezone.
|
|
</p>
|
|
</div>
|
|
<Separator />
|
|
<AccountForm />
|
|
</div>
|
|
)
|
|
}
|