\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":3062,"labels":3063,"number":2419,"owner":3022,"repository":3023,"state":3034,"title":3064,"updated_at":3065,"url":3066,"score":3067},"## 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":3069,"labels":3070,"number":3078,"owner":3022,"repository":3023,"state":3034,"title":3079,"updated_at":3080,"url":3081,"score":3082},"### 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_",[3071,3072,3075],{"name":3043,"color":3044},{"name":3073,"color":3074},"📍 upstream","FEF2C0",{"name":3076,"color":3077},"🔧 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":3084,"labels":3085,"number":1220,"owner":3022,"repository":3023,"state":3034,"title":3087,"updated_at":3088,"url":3089,"score":3090},"### 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?",[3086],{"name":3019,"color":3020},"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":3092,"labels":3093,"number":2026,"owner":3022,"repository":3023,"state":3034,"title":3094,"updated_at":3095,"url":3096,"score":3097},"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":3099,"labels":3100,"number":3102,"owner":3022,"repository":3023,"state":3034,"title":3103,"updated_at":3104,"url":3105,"score":3106},"### 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?",[3101],{"name":3019,"color":3020},95,"feat: i18n","2025-03-22T04:49:29Z","https://github.com/ZTL-UwU/shadcn-docs-nuxt/issues/95",0.8077017,{"description":3108,"labels":3109,"number":3111,"owner":3022,"repository":3023,"state":3034,"title":3112,"updated_at":3113,"url":3114,"score":3115},"### 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",[3110],{"name":3043,"color":3044},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",3117],{},["Set"],["ShallowReactive",3120],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fdUmFJ0CelrGTPt6ievlZEJEKxSdXAyq-Gqh6Tgy3tOg":-1},"/ZTL-UwU/danmu/1"]