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 CustomTooltip component to the sistent components page #6058

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/components/SistentNavigation/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,19 @@ export const content = [
link: "/projects/sistent/components/button-group/code",
text: "Button Group",
},
{
id: 27,
link: "/projects/sistent/components/tooltip",
text: "Tooltip",
},
{
id: 25,
link: "/projects/sistent/components/tooltip/guidance",
text: "Tooltip",
},
{
id: 26,
link: "/projects/sistent/components/tooltip/code",
text: "Tooltip",
},
];
8 changes: 8 additions & 0 deletions src/pages/projects/sistent/components/tooltip/code.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import TooltipCode from "../../../../../sections/Projects/Sistent/components/tooltip/code";

const TooltipCodePage = () => {
return <TooltipCode />;
};

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

const TooltipGuidancePage = () => {
return <TooltipGuidance />;
};

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

const SistentTooltipPage = () => {
return <SistentTooltip />;
};

export default SistentTooltipPage;
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 @@ -79,6 +79,13 @@ const componentsData = [
"Box is used as a flexible container for layout and styling, allowing quick customization and responsive design adjustments.",
url: "/projects/sistent/components/box",
},
{
id: 11,
name: "Tooltip",
description:
"The Tooltip component is a small pop-up box that appears when a user hovers over an element.",
url: "/projects/sistent/components/tooltip",
},
];

const SistentComponents = () => {
Expand Down
Loading