\n )}\n\n \u003Ch2 style={{ marginTop: 0 }}>{title}\u003C/h2>\n\n \u003Cul style={{ listStyle: 'none', padding: 0, margin: 0 }}>\n {fields.map(({ label, value }, index) => (\n \u003Cli key={index} style={{ marginBottom: '0.5rem' }}>\n \u003Cstrong>{label}:\u003C/strong> {value}\n \u003C/li>\n ))}\n \u003C/ul>\n \u003C/div>\n );\n}\n```\nand import\n\n```mdx\n---\ntitle: \"Helly Riggs\"\n---\n\nimport InfoBox from './InfoBox.jsx'\n\n# Helly Riggs\n\n\u003CInfoBox\n title=\"Helly Riggs\"\n image=\"/images/helly-riggs.jpg\"\n alt=\"Imagem da personagem Helly Riggs\"\n fields={[\n { label: 'Also Known As', value: 'Helly R., Helly Riggs' },\n { label: 'Portrayed By', value: 'Britt Lower' },\n { label: 'Occupation', value: 'Macrodata Refiner at Lumon Industries' },\n { label: 'Status', value: 'Severed, Alive' },\n { label: 'First Appearance', value: 'Good News About Hell' }\n ]}\n/>\n\n```\n",[],107,"Custom Component","2025-02-16T03:36:23Z","https://github.com/ZTL-UwU/shadcn-docs-nuxt/issues/107",0.79457265,{"description":2900,"labels":2901,"number":1628,"owner":2860,"repository":2861,"state":2872,"title":2902,"updated_at":2903,"url":2904,"score":2905},"## Steps\r\n1. Clone the `starter` repo and install required pkg.\r\n2. change the `nav` section inside `app.config.ts` (copyed from this repo):\r\n```ts\r\n\t\t\tnav: [\r\n\t\t\t\t{\r\n\t\t\t\t\ttitle: \"Docs\",\r\n\t\t\t\t\tlinks: [\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\ttitle: \"Getting Started\",\r\n\t\t\t\t\t\t\tto: \"/getting-started\",\r\n\t\t\t\t\t\t\tdescription: \"Start building your document with shadcn-docs-nuxt\",\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\ttitle: \"API\",\r\n\t\t\t\t\t\t\tto: \"/api\",\r\n\t\t\t\t\t\t\tdescription: \"Discover the configurations and exposed APIs.\",\r\n\t\t\t\t\t\t\ttarget: \"_self\",\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t],\r\n\t\t\t\t},\r\n\t\t\t],\r\n```\r\n\r\nrun the dev server.\r\n\r\n## Result\r\nNothing shows on the header.\r\n\r\n\r\n## Question:\r\nAny additional step to make the \"navigation\" part on the header to work?",[],"bug? Navigation settings doesn't work","2024-08-06T06:35:18Z","https://github.com/ZTL-UwU/shadcn-docs-nuxt/issues/19",0.79956615,{"description":2907,"labels":2908,"number":2916,"owner":2860,"repository":2861,"state":2872,"title":2917,"updated_at":2918,"url":2919,"score":2920},"### Environment\r\n\r\n System:\r\n OS: Windows 11 10.0.22631\r\n CPU: (8) x64 Intel(R) Core(TM) i5-10310U CPU @ 1.70GHz\r\n Memory: 3.90 GB / 15.78 GB\r\n Binaries:\r\n Node: 20.17.0 - C:\\Program Files\\nodejs\\node.EXE\r\n Yarn: 1.22.22 - ~\\AppData\\Roaming\\npm\\yarn.CMD\r\n npm: 10.8.2 - ~\\AppData\\Roaming\\npm\\npm.CMD\r\n pnpm: 9.9.0 - ~\\AppData\\Roaming\\npm\\pnpm.CMD\r\n Browsers:\r\n Edge: Chromium (131.0.2903.86)\r\n Internet Explorer: 11.0.22621.3527\r\n\r\n### Describe the bug\r\n\r\nFollowed the guide provided in the repository to create a project using the starter template (npx nuxi@latest init -t github:ZTL-UwU/shadcn-docs-nuxt-starter, npm install, npm run dev), but encountered an error while starting the development server \r\n\r\n ERROR [nuxt] [request error] [unhandled] [500] Cannot find module './node.js'\r\nRequire stack:\r\n- C:\\Users\\Documents\\2_Develop\\ZTL-UwU-shadcn-docs-nuxt-starter\\debug\r\n\r\n### Reproduction\r\n\r\n_No response_\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Logs\r\n\r\n_No response_",[2909,2910,2913],{"name":2881,"color":2882},{"name":2911,"color":2912},"📍 upstream","FEF2C0",{"name":2914,"color":2915},"🔧 workaround available","5319E7",79,"bug: npm run dev error","2025-03-11T10:13:32Z","https://github.com/ZTL-UwU/shadcn-docs-nuxt/issues/79",0.8015396,{"description":2922,"labels":2923,"number":2925,"owner":2860,"repository":2861,"state":2872,"title":2926,"updated_at":2927,"url":2928,"score":2929},"### Describe the feature\n\nNuxt Content provides a way for binding data inside markdown files : https://content.nuxt.com/docs/files/markdown#example-2-define-in-external-with-contentrenderer\n\nThis feature will enhance the flexibility and maintainability of our documentation by enabling the reuse of common data across multiple Markdown files.\n\n### Example Use Case\n\nInstead of repeating the repository URL in multiple Markdown files, define it once in `app.config.ts` as `shadcnDocs.data.repo_url` and use it as `{{$doc.repo_url}}` in Markdown files.\n\n**app.config.ts:**\n```typescript\nshadcnDocs: {\n //...\n data: {\n repo_url: 'https://github.com/shadcn/docs'\n }\n}\n```\n\n**Markdown File:**\n```markdown\nFor more information, visit our repository at {{$doc.repo_url || 'default'}}\n```\n\n### Additional information\n\n- [x] Would you be willing to help implement this feature?",[2924],{"name":2857,"color":2858},108,"feat: Support for binding data in Markdown files","2025-02-28T10:30:12Z","https://github.com/ZTL-UwU/shadcn-docs-nuxt/issues/108",0.8026681,{"description":2931,"labels":2932,"number":2031,"owner":2860,"repository":2861,"state":2872,"title":2933,"updated_at":2934,"url":2935,"score":2936},"Fresh install using the command `npx nuxi@latest init nuxtfast -t github:ZTL-UwU/shadcn-docs-nuxt-starter` and then running `npm run dev` errors. The page loads for a split second, then errors with `Failed to fetch dynamically imported module: http://localhost:3000/_nuxt/node_modules/shadcn-docs-nuxt/pages/index.vue`\r\n\r\n\r\n\r\n\r\n",[],"Failed to fetch dynamically imported module: http://localhost:3000/_nuxt/node_modules/shadcn-docs-nuxt/pages/index.vue","2024-06-25T12:34:04Z","https://github.com/ZTL-UwU/shadcn-docs-nuxt/issues/9",0.8052928,{"description":2938,"labels":2939,"number":2941,"owner":2860,"repository":2861,"state":2872,"title":2942,"updated_at":2943,"url":2944,"score":2945},"### Describe the feature\n\nAre there any plans to add support for internationalization or is there a way to do this currently?\n\nex in starlight: https://starlight.astro.build/guides/i18n/\n\n### Additional information\n\n- [ ] Would you be willing to help implement this feature?",[2940],{"name":2857,"color":2858},95,"feat: i18n","2025-03-22T04:49:29Z","https://github.com/ZTL-UwU/shadcn-docs-nuxt/issues/95",0.8077017,{"description":2947,"labels":2948,"number":2950,"owner":2860,"repository":2861,"state":2872,"title":2951,"updated_at":2952,"url":2953,"score":2954},"### Environment\r\n\r\n```sh\r\n System:\r\n OS: Linux 6.12 EndeavourOS\r\n CPU: (8) x64 Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz\r\n Memory: 20.68 GB / 31.21 GB\r\n Container: Yes # Not sure what this means but I'm not using a docker container\r\n Shell: 5.9 - /usr/bin/zsh\r\n Binaries:\r\n Node: 23.3.0 - /usr/bin/node\r\n Yarn: 1.22.21 - /usr/bin/yarn\r\n npm: 10.9.2 - /usr/bin/npm\r\n pnpm: 9.14.4 - /usr/bin/pnpm\r\n bun: 1.1.38 - ~/.bun/bin/bun\r\n```\r\n\r\n### Describe the bug\r\n\r\nThe Nuxt loading indicator disappears if the banner is enabled.\r\n\r\n### Reproduction\r\n\r\nhttps://github.com/ast3risk-ops/archiver/tree/main/www\r\n\r\nhttps://github.com/user-attachments/assets/164e307d-ae4d-4eab-a013-a173e3de9121\r\n\r\n### Additional context\r\n\r\nI have both enabled.\r\n\r\n### Logs\r\n\r\n```shell-script\r\nThere are no errors.\r\n```\r\n",[2949],{"name":2881,"color":2882},69,"bug: Banner hides Nuxt loading indicator","2024-12-11T10:17:59Z","https://github.com/ZTL-UwU/shadcn-docs-nuxt/issues/69",0.8104785,["Reactive",2956],{},["Set"],["ShallowReactive",2959],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fdUmFJ0CelrGTPt6ievlZEJEKxSdXAyq-Gqh6Tgy3tOg":-1},"/ZTL-UwU/danmu/1"]