\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.7903785,{"description":2929,"labels":2930,"number":2938,"owner":2859,"repository":2873,"state":2874,"title":2939,"updated_at":2940,"url":2941,"score":2942},"### 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_",[2931,2932,2935],{"name":2870,"color":2871},{"name":2933,"color":2934},"📍 upstream","FEF2C0",{"name":2936,"color":2937},"🔧 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.79298425,{"description":2944,"labels":2945,"number":2947,"owner":2859,"repository":2873,"state":2874,"title":2948,"updated_at":2949,"url":2950,"score":2951},"### Describe the feature\n\nHello,\n\nI am currently working on creating a complex interactive page, and I find it quite challenging to implement using Markdown. Therefore, I want to write it directly as a SFC. I have placed my page within the `pages` folder, and it renders successfully (though not entirely, as the files under pages are not processed by `@nuxt/content`, resulting in useContent returning null, and causing errors when accessing `page.aside`). However, the `aside` component still appears on the left, which I do not need. I attempted to find a configuration to disable it but was unsuccessful. If there is a way to do this, I would greatly appreciate your guidance.\n\nIn the source code, I found the following:\n\n```vue\n\u003Ctemplate>\n \u003CNuxtLoadingIndicator :color=\"false\" class=\"z-100 bg-primary/80\" />\n \u003CLayoutBanner v-if=\"config.banner.enable\" />\n \u003CLayoutHeader />\n\n \u003Cdiv v-if=\"route.path !== '/'\" class=\"min-h-screen border-b\">\n \u003Cdiv\n class=\"flex-1 items-start px-4 md:grid md:gap-6 md:px-8 lg:gap-10\"\n :class=\"[\n config.main.padded && 'container',\n (page.aside ?? true) && 'md:grid-cols-[220px_minmax(0,1fr)] lg:grid-cols-[240px_minmax(0,1fr)]',\n ]\"\n >\n \u003Caside v-if=\"page.aside ?? true\" class=\"fixed top-[102px] z-30 -ml-2 hidden h-[calc(100vh-3.5rem)] w-full shrink-0 overflow-y-auto md:sticky md:top-[60px] md:block\">\n \u003CLayoutAside :is-mobile=\"false\" />\n \u003C/aside>\n \u003CNuxtPage />\n \u003C/div>\n \u003C/div>\n \u003CNuxtPage v-else />\n\n \u003CToaster />\n \u003CLayoutFooter />\n\u003C/template>\n\n\u003Cscript setup lang=\"ts\">\nimport Toaster from '@/components/ui/toast/Toaster.vue';\n\nconst { page } = useContent();\nconst config = useConfig();\nconst route = useRoute();\nconst { themeClass, radius } = useThemes();\n\nuseSeoMeta({\n description: config.value.site.description,\n ogDescription: config.value.site.description,\n twitterCard: 'summary_large_image',\n});\n\nuseServerHead({\n bodyAttrs: {\n class: themeClass.value,\n style: `--radius: ${radius.value}rem;`,\n },\n});\n\u003C/script>\n```\nThis only checks for the homepage. I hope it can apply to all files under the pages folder. Simply doing this would work:\n\n```diff\n- \u003Cdiv v-if=\"route.path !== '/'\" class=\"min-h-screen border-b\">\n+ \u003Cdiv v-if=\"page\" class=\"min-h-screen border-b\">\n```\n\nI don't know if this can be implemented this way. If it can, I am willing to provide a PR.\n\nThank you!\n\n### Additional information\n\n- [x] Would you be willing to help implement this feature?",[2946],{"name":2904,"color":2905},91,"feat: support custom pages","2025-01-23T02:08:27Z","https://github.com/ZTL-UwU/shadcn-docs-nuxt/issues/91",0.7947039,{"description":2953,"labels":2954,"number":2956,"owner":2859,"repository":2873,"state":2874,"title":2957,"updated_at":2958,"url":2959,"score":2960},"### Describe the feature\n\nCan you add the feature for displaying code lines, tks~\r\n\u003Cimg width=\"819\" alt=\"image\" src=\"https://github.com/user-attachments/assets/09be7981-1fed-4e73-9e82-b1e91644b32c\">\r\n\n\n### Additional information\n\n- [ ] Would you be willing to help implement this feature?",[2955],{"name":2904,"color":2905},55,"feat: Add code lines","2024-11-20T15:03:06Z","https://github.com/ZTL-UwU/shadcn-docs-nuxt/issues/55",0.7972447,["Reactive",2962],{},["Set"],["ShallowReactive",2965],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fgJCH8Y0mhTrVw7nIx9p0iWCkgtUneu1G5IMuXmZI20w":-1},"/ZTL-UwU/shadcn-docs-nuxt/70"]