mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-10 12:46:37 +00:00
Add resources layout
This commit is contained in:
17
src/app/configuration/resources/[resourceId]/page.tsx
Normal file
17
src/app/configuration/resources/[resourceId]/page.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { Separator } from "@/components/ui/separator"
|
||||
import { ProfileForm } from "@app/components/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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user