forked from github/plane
a1de3f581f
* fix: kanban height issue * dev: Layout fixes * dev: layout changes * fix: layout overflow settings and fixed header * style: filters padding fixed * fix: hide filters if none are applied --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
14 lines
390 B
TypeScript
14 lines
390 B
TypeScript
import SettingsNavbar from "layouts/settings-navbar";
|
|
|
|
export const SettingsHeader = () => (
|
|
<div className="mb-12 space-y-6">
|
|
<div>
|
|
<h3 className="text-3xl font-semibold">Workspace Settings</h3>
|
|
<p className="mt-1 text-brand-secondary">
|
|
This information will be displayed to every member of the workspace.
|
|
</p>
|
|
</div>
|
|
<SettingsNavbar />
|
|
</div>
|
|
);
|