18 lines
539 B
TypeScript
18 lines
539 B
TypeScript
"use client"
|
|
|
|
import { SettingsForm } from "@/modules/settings/company/settings-form"
|
|
|
|
export default function CompanySettingsPage() {
|
|
return (
|
|
<div className="mx-auto max-w-3xl space-y-6 p-6">
|
|
<div>
|
|
<h1 className="text-2xl font-semibold">Company Settings</h1>
|
|
<p className="text-muted-foreground text-sm">
|
|
Manage your workshop profile, contact details, and preferences.
|
|
</p>
|
|
</div>
|
|
<SettingsForm />
|
|
</div>
|
|
)
|
|
}
|