A design system in a box. hip-ui.tngl.io/docs/introduction
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove test showcases

+20 -14
+7 -1
apps/docs/src/docs/introduction.mdx
··· 44 44 45 45 - **Foundations** - The tokens that are use to build the design system and style your UI 46 46 - **Components** - All the available components in Hip UI, organized by category 47 - - **Showcases** - Examples of how to use Hip UI in real world applications 47 + 48 + ## Showcases 49 + 50 + Here is a list of some site that use Hip UI: 51 + 52 + - [Hip UI Website](https://hip-ui.tngl.io) - The docs you're reading right now! 53 + - [kich.io](https://kich.io) - A tool managing your kitchen.
+13 -13
apps/docs/src/routes/docs.tsx
··· 40 40 const foundationDocs = allDocs.filter((doc) => 41 41 doc._meta.directory.startsWith("foundations"), 42 42 ); 43 - const showcaseDocs = allDocs.filter((doc) => 44 - doc._meta.directory.startsWith("showcase"), 45 - ); 43 + // const showcaseDocs = allDocs.filter((doc) => 44 + // doc._meta.directory.startsWith("showcase"), 45 + // ); 46 46 47 47 // Group component docs by folder name 48 48 // oxlint-disable-next-line eslint-plugin-unicorn(no-array-reduce ··· 98 98 label: "Components", 99 99 items: componentItems, 100 100 }, 101 - { 102 - id: "showcases", 103 - label: "Showcases", 104 - items: showcaseDocs.map((doc) => ({ 105 - id: doc._meta.path, 106 - label: doc.title, 107 - to: "/docs/$", 108 - params: { _splat: doc._meta.path }, 109 - })), 110 - }, 101 + // { 102 + // id: "showcases", 103 + // label: "Showcases", 104 + // items: showcaseDocs.map((doc) => ({ 105 + // id: doc._meta.path, 106 + // label: doc.title, 107 + // to: "/docs/$", 108 + // params: { _splat: doc._meta.path }, 109 + // })), 110 + // }, 111 111 ]; 112 112 113 113 const flatItems = sidebarItems