Skip to content

Commit

Permalink
Merge branch 'master' into Avatar
Browse files Browse the repository at this point in the history
Signed-off-by: NISHANT SINGH <[email protected]>
  • Loading branch information
NishantSinghhhhh authored Oct 24, 2024
2 parents bc1f486 + 7bef27a commit 4c378f5
Show file tree
Hide file tree
Showing 9 changed files with 1,420 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/components/SistentNavigation/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,19 @@ export const content = [
link: "/projects/sistent/components/popper/code",
text: "Popper",
},
{
id: 21,
link: "/projects/sistent/components/text-field",
text: "Text Field",
},
{
id: 22,
link: "/projects/sistent/components/text-field/guidance",
text: "Text Field",
},
{
id: 23,
link: "/projects/sistent/components/text-field/code",
text: "Text Field",
}
];
8 changes: 8 additions & 0 deletions src/pages/projects/sistent/components/text-field/code.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import { TextFieldCode } from "../../../../../sections/Projects/Sistent/components/text-field/code";

const TextFieldCodePage = () => {
return <TextFieldCode />;
};

export default TextFieldCodePage;
8 changes: 8 additions & 0 deletions src/pages/projects/sistent/components/text-field/guidance.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import { TextFieldGuidance } from "../../../../../sections/Projects/Sistent/components/text-field/guidance";

const TextFieldGuidancePage = () => {
return <TextFieldGuidance />;
};

export default TextFieldGuidancePage;
8 changes: 8 additions & 0 deletions src/pages/projects/sistent/components/text-field/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import SistentTextField from "../../../../../sections/Projects/Sistent/components/text-field";

const SistentTextFieldPage = () => {
return <SistentTextField />;
};

export default SistentTextFieldPage;
10 changes: 10 additions & 0 deletions src/sections/Community/Handbook/repo-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,16 @@ export const repo_data = [
"Generates visual snapshots of infrastructure as code (e.g., Kubernetes manifests, Helm charts) and delivers them to pull requests for automated review.",
repository: "https://github.com/layer5labs/kanvas-snapshot",
},
{
project: "Helm Kanvas Snapshot",
image: meshery,
language: "Golang",
maintainers_name: ["Vacant"],
link: [""],
description:
"The Kanvas Snapshot Helm Plugin allows users to generate a visual snapshot of their Helm charts directly from the command line.",
repository: "https://github.com/meshery/helm-kanvas-snapshot",
},
],
},

Expand Down
7 changes: 7 additions & 0 deletions src/sections/Projects/Sistent/components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ const componentsData = [
},
{
id: 6,
name: "Text Field",
description:
"The TextField component is a versatile input field used to capture user input in forms and user interfaces.",
url: "/projects/sistent/components/text-field",
},
{
id: 7,
name: "Avatar",
description:
"A Avatar is an interactive element that triggers a specific action takes users where they need to go, and points out what happens next in a given flow.",
Expand Down
Loading

0 comments on commit 4c378f5

Please sign in to comment.