Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Popper component to the sistent components page #5955 #6010

Merged
merged 8 commits into from
Oct 24, 2024
15 changes: 15 additions & 0 deletions src/components/SistentNavigation/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,19 @@ export const content = [
link: "/projects/sistent/components/paper/code",
text: "Paper",
},
{
id: 18,
link: "/projects/sistent/components/popper",
text: "Popper",
},
{
id: 19,
link: "/projects/sistent/components/popper/guidance",
text: "Popper",
},
{
id: 20,
link: "/projects/sistent/components/popper/code",
text: "Popper",
},
];
8 changes: 8 additions & 0 deletions src/pages/projects/sistent/components/popper/code.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import { PooperCode } from "../../../../../sections/Projects/Sistent/components/popper/code";

const PopperCodePage = () => {
return <PooperCode />;
};

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

const PopperGuidancePage = () => {
return <PopperGuidance />;
};

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

const SistentPopperPage = () => {
return <SistentPopper />;
};

export default SistentPopperPage;
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 @@ -37,6 +37,13 @@ const componentsData = [
"The Paper component offers an elevated surface with shadow effects, following Material Design’s elevation system.",
url: "/projects/sistent/components/paper",
},
{
id: 5,
name: "Popper",
description:
"A popper is a tooltip that appears when a user interacts with an element.",
url: "/projects/sistent/components/popper",
},
];

const SistentComponents = () => {
Expand Down
Loading
Loading