diff --git a/apps/app/components/project/index.ts b/apps/app/components/project/index.ts
index 47d7a4b1c..e5ece3955 100644
--- a/apps/app/components/project/index.ts
+++ b/apps/app/components/project/index.ts
@@ -1,6 +1,7 @@
export * from "./create-project-modal";
export * from "./delete-project-modal";
export * from "./sidebar-list";
+export * from "./settings-header"
export * from "./single-integration-card";
export * from "./single-project-card";
export * from "./single-sidebar-project";
diff --git a/apps/app/components/project/settings-header.tsx b/apps/app/components/project/settings-header.tsx
new file mode 100644
index 000000000..c0de3f4c0
--- /dev/null
+++ b/apps/app/components/project/settings-header.tsx
@@ -0,0 +1,13 @@
+import SettingsNavbar from "layouts/settings-navbar";
+
+export const SettingsHeader = () => (
+
+
+
Project Settings
+
+ This information will be displayed to every member of the project.
+
+
+
+
+);
diff --git a/apps/app/components/workspace/index.ts b/apps/app/components/workspace/index.ts
index db509a70d..d40b9d58e 100644
--- a/apps/app/components/workspace/index.ts
+++ b/apps/app/components/workspace/index.ts
@@ -6,5 +6,6 @@ export * from "./help-section";
export * from "./issues-list";
export * from "./issues-pie-chart";
export * from "./issues-stats";
+export * from "./settings-header";
export * from "./sidebar-dropdown";
export * from "./sidebar-menu";
diff --git a/apps/app/components/workspace/settings-header.tsx b/apps/app/components/workspace/settings-header.tsx
new file mode 100644
index 000000000..dd560edcd
--- /dev/null
+++ b/apps/app/components/workspace/settings-header.tsx
@@ -0,0 +1,13 @@
+import SettingsNavbar from "layouts/settings-navbar";
+
+export const SettingsHeader = () => (
+
+
+
Workspace Settings
+
+ This information will be displayed to every member of the workspace.
+
+
+
+
+);
diff --git a/apps/app/layouts/app-layout/app-header.tsx b/apps/app/layouts/app-layout/app-header.tsx
index 979cbd8cc..fb533da93 100644
--- a/apps/app/layouts/app-layout/app-header.tsx
+++ b/apps/app/layouts/app-layout/app-header.tsx
@@ -9,8 +9,8 @@ type Props = {
};
const Header: React.FC
= ({ breadcrumbs, left, right, setToggleSidebar }) => (
-
-
+
+