diff --git a/package-lock.json b/package-lock.json
index 3067e2b4ac4261b998a124add510792fbf565960..b6a45b496b1efd48fff28faa1a7c726df3cabbc1 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -13,7 +13,7 @@
         "@astrojs/tailwind": "^5.1.0",
         "@carbon/icons-react": "^11.39.0",
         "@fchh/fcos-suite-map": "^0.1.4",
-        "@fchh/fcos-suite-ui": "^0.2.24",
+        "@fchh/fcos-suite-ui": "^0.2.25",
         "@types/react": "^18.2.73",
         "@types/react-dom": "^18.2.23",
         "astro": "^4.5.12",
@@ -1354,9 +1354,9 @@
       }
     },
     "node_modules/@fchh/fcos-suite-ui": {
-      "version": "0.2.24",
-      "resolved": "https://registry.npmjs.org/@fchh/fcos-suite-ui/-/fcos-suite-ui-0.2.24.tgz",
-      "integrity": "sha512-xDtwe+pkfZc3jt97ApIwaqvH3ERDLFPUfS/zoqnjmSa8fswngTVSrntqNTVZKuVJp4yCvAnTSO2+r/v7gdpiiA==",
+      "version": "0.2.25",
+      "resolved": "https://registry.npmjs.org/@fchh/fcos-suite-ui/-/fcos-suite-ui-0.2.25.tgz",
+      "integrity": "sha512-Ko/ydySKPvbDQDQLK5PjIz6rsOhPDquIpH5BHF/96WpsfIzibnZYIGiGcuqRyhx6OqKXPxEcYLgIRVoo2jC5Ug==",
       "dev": true
     },
     "node_modules/@floating-ui/core": {
diff --git a/package.json b/package.json
index 436ade5c08b39985b8f26c95df02d330c37163ac..142ff705154d189af5a8fbdbdd004f3209f649f5 100644
--- a/package.json
+++ b/package.json
@@ -29,7 +29,7 @@
     "@astrojs/tailwind": "^5.1.0",
     "@carbon/icons-react": "^11.39.0",
     "@fchh/fcos-suite-map": "^0.1.4",
-    "@fchh/fcos-suite-ui": "^0.2.24",
+    "@fchh/fcos-suite-ui": "^0.2.25",
     "@types/react": "^18.2.73",
     "@types/react-dom": "^18.2.23",
     "astro": "^4.5.12",
diff --git a/src/interfaces/IPage.ts b/src/interfaces/IPage.ts
index 7b0f8bab03b08e7dc23bfa21f398250f7b144030..0aa95f2e84a75f2fed2f413ebfbe03cf7df9bfce 100644
--- a/src/interfaces/IPage.ts
+++ b/src/interfaces/IPage.ts
@@ -10,4 +10,5 @@ export interface IPage {
   date?: string;
   author?: string;
   translated?: string;
+  category?: boolean;
 }
diff --git a/src/utils/Structure.tsx b/src/utils/Structure.tsx
index e07b21804bfb08e8edfaa248c6722e4e0e092215..046331e2f292fd565e7d994f40657ed5723e04a2 100644
--- a/src/utils/Structure.tsx
+++ b/src/utils/Structure.tsx
@@ -48,7 +48,9 @@ export const buildPageTree = (
             parentKey: localizedParentKey,
             title: item.frontmatter.title,
             ...(index > 1
-              ? { target: item.url }
+              ? item.frontmatter.category
+                ? {}
+                : { target: item.url }
               : item.frontmatter.hideChildren
               ? { target: item.url }
               : {}),