├── .github └── screenshot.png ├── .gitignore ├── LICENSE ├── README.md ├── components ├── counters.module.css └── counters.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _meta.json ├── about.mdx ├── advanced.mdx ├── advanced │ └── satori.mdx ├── another.mdx └── index.mdx ├── pnpm-lock.yaml ├── theme.config.tsx └── tsconfig.json /.github/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/.github/screenshot.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/README.md -------------------------------------------------------------------------------- /components/counters.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/components/counters.module.css -------------------------------------------------------------------------------- /components/counters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/components/counters.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/package.json -------------------------------------------------------------------------------- /pages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/pages/_meta.json -------------------------------------------------------------------------------- /pages/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/pages/about.mdx -------------------------------------------------------------------------------- /pages/advanced.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/pages/advanced.mdx -------------------------------------------------------------------------------- /pages/advanced/satori.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/pages/advanced/satori.mdx -------------------------------------------------------------------------------- /pages/another.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/pages/another.mdx -------------------------------------------------------------------------------- /pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/pages/index.mdx -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /theme.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/theme.config.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepumandal/nextra-docs-template/HEAD/tsconfig.json --------------------------------------------------------------------------------