diff --git a/packages/frontend/src/pages/org-slug/Settings.tsx b/packages/frontend/src/pages/org-slug/Settings.tsx index 818b083..f843c85 100644 --- a/packages/frontend/src/pages/org-slug/Settings.tsx +++ b/packages/frontend/src/pages/org-slug/Settings.tsx @@ -1,5 +1,19 @@ -const Settings = () => { - return
Settings page
; -}; +import { Heading } from 'components/shared/Heading'; +const Settings = () => { + return ( +
+ {/* Header */} +
+
+
+ + Settings + +
+
+
+
+ ); +}; export default Settings;