Skip to content
Open
Show file tree
Hide file tree
Changes from 5 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
35 changes: 18 additions & 17 deletions src/components/SistentNavigation/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,26 +99,27 @@ export const content = [
{ id: 69, link: "/projects/sistent/components/switch/guidance", text: "Switch" },
{ id: 70, link: "/projects/sistent/components/switch/code", text: "Switch" },

{ id: 71, link: "/projects/sistent/components/tabs", text: "Tabs" },
{ id: 72, link: "/projects/sistent/components/tabs/guidance", text: "Tabs" },
{ id: 73, link: "/projects/sistent/components/tabs/code", text: "Tabs" },
{ id: 71, link: "/projects/sistent/components/table", text: "Table" },
{ id: 72, link: "/projects/sistent/components/table/guidance", text: "Table" },
{ id: 73, link: "/projects/sistent/components/table/code", text: "Table" },

{ id: 74, link: "/projects/sistent/components/text-field", text: "Text Field" },
{ id: 75, link: "/projects/sistent/components/text-field/guidance", text: "Text Field" },
{ id: 76, link: "/projects/sistent/components/text-field/code", text: "Text Field" },
{ id: 74, link: "/projects/sistent/components/tabs", text: "Tabs" },
{ id: 75, link: "/projects/sistent/components/tabs/guidance", text: "Tabs" },
{ id: 76, link: "/projects/sistent/components/tabs/code", text: "Tabs" },

{ id: 77, link: "/projects/sistent/components/text-input", text: "Text Input" },
{ id: 78, link: "/projects/sistent/components/text-input/guidance", text: "Text Input" },
{ id: 79, link: "/projects/sistent/components/text-input/code", text: "Text Input" },

{ id: 80, link: "/projects/sistent/components/toolbar", text: "Toolbar" },
{ id: 81, link: "/projects/sistent/components/toolbar/guidance", text: "Toolbar" },
{ id: 82, link: "/projects/sistent/components/toolbar/code", text: "Toolbar" },

{ id: 83, link: "/projects/sistent/components/tooltip", text: "Tooltip" },
{ id: 84, link: "/projects/sistent/components/tooltip/guidance", text: "Tooltip" },
{ id: 85, link: "/projects/sistent/components/tooltip/code", text: "Tooltip" },
{ id: 77, link: "/projects/sistent/components/text-field", text: "Text Field" },
{ id: 78, link: "/projects/sistent/components/text-field/guidance", text: "Text Field" },
{ id: 79, link: "/projects/sistent/components/text-field/code", text: "Text Field" },

{ id: 80, link: "/projects/sistent/components/text-input", text: "Text Input" },
{ id: 81, link: "/projects/sistent/components/text-input/guidance", text: "Text Input" },
{ id: 82, link: "/projects/sistent/components/text-input/code", text: "Text Input" },

{ id: 83, link: "/projects/sistent/components/toolbar", text: "Toolbar" },
{ id: 84, link: "/projects/sistent/components/toolbar/guidance", text: "Toolbar" },
{ id: 85, link: "/projects/sistent/components/toolbar/code", text: "Toolbar" },

{ id: 86, link: "/projects/sistent/components/tooltip", text: "Tooltip" },
{ id: 87, link: "/projects/sistent/components/tooltip/guidance", text: "Tooltip" },
{ id: 88, link: "/projects/sistent/components/tooltip/code", text: "Tooltip" },
];
7 changes: 7 additions & 0 deletions src/sections/Projects/Sistent/components/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,13 @@ const componentsData = [
url: "/projects/sistent/components/iconbutton",
src: "/iconbutton",
},
{
id: 30,
name: "Table",
description: "Table components provide a flexible and feature-rich way to display tabular data with sorting, filtering, pagination, and responsive design capabilities.",
url: "/projects/sistent/components/table",
src: "/table",
},
];

module.exports = { componentsData };
Loading