WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 947ec3d

Browse files
Merge pull request #6058 from Vidit-Kushwaha/add/customTooltip
Add CustomTooltip component to the sistent components page
2 parents 092b5eb + 3bcaf46 commit 947ec3d

File tree

6 files changed

+994
-0
lines changed

6 files changed

+994
-0
lines changed

gatsby-node.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -733,6 +733,7 @@ exports.createPages = async ({ actions, graphql, reporter }) => {
733733
"link",
734734
"container",
735735
"button-group",
736+
"tooltip",
736737
];
737738

738739
const createComponentPages = (createPage, components) => {

src/components/SistentNavigation/content.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,19 @@ export const content = [
103103
link: "/projects/sistent/components/button-group/code",
104104
text: "Button Group",
105105
},
106+
{
107+
id: 27,
108+
link: "/projects/sistent/components/tooltip",
109+
text: "Tooltip",
110+
},
111+
{
112+
id: 25,
113+
link: "/projects/sistent/components/tooltip/guidance",
114+
text: "Tooltip",
115+
},
116+
{
117+
id: 26,
118+
link: "/projects/sistent/components/tooltip/code",
119+
text: "Tooltip",
120+
},
106121
];

src/sections/Projects/Sistent/components/index.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,13 @@ const componentsData = [
7979
"Box is used as a flexible container for layout and styling, allowing quick customization and responsive design adjustments.",
8080
url: "/projects/sistent/components/box",
8181
},
82+
{
83+
id: 11,
84+
name: "Tooltip",
85+
description:
86+
"The Tooltip component is a small pop-up box that appears when a user hovers over an element.",
87+
url: "/projects/sistent/components/tooltip",
88+
},
8289
];
8390

8491
const SistentComponents = () => {

0 commit comments

Comments
 (0)