18 lines
557 B
TypeScript
18 lines
557 B
TypeScript
"use client"
|
|
|
|
import DashboardPage from "@/base/components/layout/dashboard/dashboard-page"
|
|
import { SettingsForm } from "@/modules/settings/company/settings-form"
|
|
|
|
export default function CompanySettingsPage() {
|
|
return (
|
|
<DashboardPage headerProps={{title:'Company Settings'}}>
|
|
<div>
|
|
<p className="text-muted-foreground text-sm">
|
|
Manage your workshop profile, contact details, and preferences.
|
|
</p>
|
|
</div>
|
|
<SettingsForm />
|
|
</DashboardPage>
|
|
)
|
|
}
|