diff --git a/src/components/SistentNavigation/index.js b/src/components/SistentNavigation/index.js
index 450cacca3638..eed417a835b0 100644
--- a/src/components/SistentNavigation/index.js
+++ b/src/components/SistentNavigation/index.js
@@ -88,39 +88,37 @@ const TOC = () => {
-
-
-
-
- Identity
-
-
-
-
-
-
-
-
-
-
+
+
setExpandIdentity((prev) => !prev)}
+ >
+ Idenitity
+
+
+ {expandIdenity && (
+
+
Color
+
+
Spacing
-
-
-
-
+
+
+ )}
+
props.theme.text};
+ }
+ }
+
+ .identity-sublinks {
+ padding-left: 0.56rem;
+
+ .identity-item {
+ font-size: 1.05rem;
+ margin-top: 0.45rem;
+ }
+ }
`;
export default TOCWrapper;
diff --git a/src/pages/projects/sistent/identity/spacing.js b/src/pages/projects/sistent/identity/spacing.js
new file mode 100644
index 000000000000..2bf24ac64be8
--- /dev/null
+++ b/src/pages/projects/sistent/identity/spacing.js
@@ -0,0 +1,8 @@
+import React from "react";
+import SistentIdentitySpacing from "../../../../sections/Projects/Sistent/identity/spacing";
+
+const IdentitySpacingPage = () => {
+ return ;
+};
+
+export default IdentitySpacingPage;
diff --git a/src/sections/Projects/Sistent/identity/color.js b/src/sections/Projects/Sistent/identity/color.js
index da8e105b70f7..e072dba5ca7c 100644
--- a/src/sections/Projects/Sistent/identity/color.js
+++ b/src/sections/Projects/Sistent/identity/color.js
@@ -17,7 +17,7 @@ const SistentIdentityColor = () => {
diff --git a/src/sections/Projects/Sistent/identity/spacing.js b/src/sections/Projects/Sistent/identity/spacing.js
new file mode 100644
index 000000000000..cf374129a8d4
--- /dev/null
+++ b/src/sections/Projects/Sistent/identity/spacing.js
@@ -0,0 +1,30 @@
+import React from "react";
+import { Container } from "../../../../reusecore/Layout";
+import SistentWrapper from "../sistent.style";
+import TOC from "../../../../components/SistentNavigation";
+import IntraPage from "../../../../components/handbook-navigation/intra-page";
+
+const contents = [{ id: 0, link: "#About Sistent", text: "About Sistent" }];
+
+const SistentIdentitySpacing = () => {
+ return (
+
+
+
Spacing
+
+
+
+
+ );
+};
+
+export default SistentIdentitySpacing;