├── .cspell.jsonc ├── .cursor ├── mcp.json └── rules │ └── biome.mdc ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .env.example ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml ├── copilot-instructions.md ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── biome.jsonc ├── bun.lock ├── bunfig.toml ├── cli.json ├── commitlint.config.ts ├── components.json ├── content └── docs │ ├── (index) │ ├── essentials │ │ ├── code.mdx │ │ ├── markdown.mdx │ │ ├── meta.json │ │ └── routing.mdx │ ├── features │ │ ├── ai-search.mdx │ │ ├── async-mode.mdx │ │ ├── llms.mdx │ │ └── openapi.mdx │ ├── guides │ │ ├── adding-a-root-folder.mdx │ │ ├── customizing-the-layout.mdx │ │ └── using-custom-themes.mdx │ ├── index.mdx │ ├── meta.json │ └── quickstart.mdx │ ├── api-reference │ ├── (generated) │ │ ├── events │ │ │ ├── createSpecialEvent.mdx │ │ │ ├── deleteSpecialEvent.mdx │ │ │ ├── getSpecialEvent.mdx │ │ │ ├── listSpecialEvents.mdx │ │ │ ├── publishNewEvent.mdx │ │ │ └── updateSpecialEvent.mdx │ │ ├── operations │ │ │ └── getMuseumHours.mdx │ │ └── tickets │ │ │ ├── buyMuseumTickets.mdx │ │ │ └── getTicketCode.mdx │ ├── index.mdx │ ├── meta.json │ └── openapi.yml │ ├── changelog │ ├── index.mdx │ └── meta.json │ └── meta.json ├── lefthook.yml ├── next.config.ts ├── package.json ├── postcss.config.js ├── public ├── banner.png ├── docs │ ├── docs.png │ ├── notebook-nav-mode.png │ ├── notebook-tab-mode.png │ ├── notebook.png │ └── solar.png ├── logo.svg └── robots.txt ├── scripts ├── generate-docs.ts ├── lint.ts ├── post-build.ts ├── pre-build.ts └── preload.ts ├── source.config.ts ├── src ├── app │ ├── (home) │ │ ├── layout.tsx │ │ └── page.tsx │ ├── api │ │ ├── chat │ │ │ └── route.ts │ │ ├── proxy │ │ │ └── route.ts │ │ └── search │ │ │ └── route.ts │ ├── docs │ │ ├── [[...slug]] │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── icon.png │ ├── layout.client.tsx │ ├── layout.tsx │ ├── llms-full.txt │ │ └── route.ts │ ├── llms.mdx │ │ └── [[...slug]] │ │ │ └── route.ts │ ├── llms.txt │ │ └── route.ts │ ├── not-found.tsx │ ├── og │ │ └── [...slug] │ │ │ ├── fonts │ │ │ ├── Inter-Bold.ttf │ │ │ ├── Inter-Regular.ttf │ │ │ └── Inter-SemiBold.ttf │ │ │ ├── generate.tsx │ │ │ └── route.tsx │ ├── providers.tsx │ ├── rss.xml │ │ └── route.ts │ └── sitemap.ts ├── components │ ├── api-page.client.tsx │ ├── api-page.tsx │ ├── docs-background.tsx │ ├── fumadocs │ │ ├── ai │ │ │ ├── markdown.tsx │ │ │ ├── search.tsx │ │ │ ├── tool.tsx │ │ │ └── tools │ │ │ │ ├── get-page-content.tsx │ │ │ │ ├── provide-links.tsx │ │ │ │ └── search-docs.tsx │ │ ├── page-actions.tsx │ │ ├── ui │ │ │ ├── button.tsx │ │ │ └── collapsible.tsx │ │ └── updates.tsx │ ├── mdx │ │ └── mermaid.tsx │ ├── search.tsx │ ├── theme-toggle.tsx │ └── ui │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── collapsible.tsx │ │ ├── dialog.tsx │ │ ├── hover-card.tsx │ │ ├── icon.tsx │ │ ├── skeleton.tsx │ │ └── tooltip.tsx ├── env.ts ├── lib │ ├── ai │ │ ├── prompts │ │ │ ├── core.ts │ │ │ ├── examples.ts │ │ │ ├── index.ts │ │ │ ├── llms.ts │ │ │ └── tools.ts │ │ ├── providers.ts │ │ ├── qa-schema.ts │ │ └── tools │ │ │ ├── get-page-content.ts │ │ │ ├── provide-links.ts │ │ │ └── search-docs.ts │ ├── cn.ts │ ├── constants │ │ ├── category.ts │ │ ├── index.ts │ │ └── tags.ts │ ├── fumadocs │ │ └── cn.ts │ ├── get-llm-text.ts │ ├── github.ts │ ├── layout.shared.tsx │ ├── metadata.ts │ ├── openapi │ │ └── index.ts │ ├── page-tree.ts │ ├── rss.ts │ ├── source.tsx │ └── url.ts ├── mdx-components.tsx ├── proxy.ts └── styles │ └── globals.css └── tsconfig.json /.cspell.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/.cspell.jsonc -------------------------------------------------------------------------------- /.cursor/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/.cursor/mcp.json -------------------------------------------------------------------------------- /.cursor/rules/biome.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/.cursor/rules/biome.mdc -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/TODO.md -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/biome.jsonc -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/bun.lock -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/bunfig.toml -------------------------------------------------------------------------------- /cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/cli.json -------------------------------------------------------------------------------- /commitlint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/commitlint.config.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/components.json -------------------------------------------------------------------------------- /content/docs/(index)/essentials/code.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/essentials/code.mdx -------------------------------------------------------------------------------- /content/docs/(index)/essentials/markdown.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/essentials/markdown.mdx -------------------------------------------------------------------------------- /content/docs/(index)/essentials/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/essentials/meta.json -------------------------------------------------------------------------------- /content/docs/(index)/essentials/routing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/essentials/routing.mdx -------------------------------------------------------------------------------- /content/docs/(index)/features/ai-search.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/features/ai-search.mdx -------------------------------------------------------------------------------- /content/docs/(index)/features/async-mode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/features/async-mode.mdx -------------------------------------------------------------------------------- /content/docs/(index)/features/llms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/features/llms.mdx -------------------------------------------------------------------------------- /content/docs/(index)/features/openapi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/features/openapi.mdx -------------------------------------------------------------------------------- /content/docs/(index)/guides/adding-a-root-folder.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/guides/adding-a-root-folder.mdx -------------------------------------------------------------------------------- /content/docs/(index)/guides/customizing-the-layout.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/guides/customizing-the-layout.mdx -------------------------------------------------------------------------------- /content/docs/(index)/guides/using-custom-themes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/guides/using-custom-themes.mdx -------------------------------------------------------------------------------- /content/docs/(index)/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/index.mdx -------------------------------------------------------------------------------- /content/docs/(index)/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/meta.json -------------------------------------------------------------------------------- /content/docs/(index)/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/(index)/quickstart.mdx -------------------------------------------------------------------------------- /content/docs/api-reference/(generated)/events/createSpecialEvent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/api-reference/(generated)/events/createSpecialEvent.mdx -------------------------------------------------------------------------------- /content/docs/api-reference/(generated)/events/deleteSpecialEvent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/api-reference/(generated)/events/deleteSpecialEvent.mdx -------------------------------------------------------------------------------- /content/docs/api-reference/(generated)/events/getSpecialEvent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/api-reference/(generated)/events/getSpecialEvent.mdx -------------------------------------------------------------------------------- /content/docs/api-reference/(generated)/events/listSpecialEvents.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/api-reference/(generated)/events/listSpecialEvents.mdx -------------------------------------------------------------------------------- /content/docs/api-reference/(generated)/events/publishNewEvent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/api-reference/(generated)/events/publishNewEvent.mdx -------------------------------------------------------------------------------- /content/docs/api-reference/(generated)/events/updateSpecialEvent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/api-reference/(generated)/events/updateSpecialEvent.mdx -------------------------------------------------------------------------------- /content/docs/api-reference/(generated)/operations/getMuseumHours.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/api-reference/(generated)/operations/getMuseumHours.mdx -------------------------------------------------------------------------------- /content/docs/api-reference/(generated)/tickets/buyMuseumTickets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/api-reference/(generated)/tickets/buyMuseumTickets.mdx -------------------------------------------------------------------------------- /content/docs/api-reference/(generated)/tickets/getTicketCode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/api-reference/(generated)/tickets/getTicketCode.mdx -------------------------------------------------------------------------------- /content/docs/api-reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/api-reference/index.mdx -------------------------------------------------------------------------------- /content/docs/api-reference/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/api-reference/meta.json -------------------------------------------------------------------------------- /content/docs/api-reference/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/api-reference/openapi.yml -------------------------------------------------------------------------------- /content/docs/changelog/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/changelog/index.mdx -------------------------------------------------------------------------------- /content/docs/changelog/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/content/docs/changelog/meta.json -------------------------------------------------------------------------------- /content/docs/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": ["(index)", "api-reference", "changelog"] 3 | } 4 | -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/lefthook.yml -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/public/banner.png -------------------------------------------------------------------------------- /public/docs/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/public/docs/docs.png -------------------------------------------------------------------------------- /public/docs/notebook-nav-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/public/docs/notebook-nav-mode.png -------------------------------------------------------------------------------- /public/docs/notebook-tab-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/public/docs/notebook-tab-mode.png -------------------------------------------------------------------------------- /public/docs/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/public/docs/notebook.png -------------------------------------------------------------------------------- /public/docs/solar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/public/docs/solar.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/public/robots.txt -------------------------------------------------------------------------------- /scripts/generate-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/scripts/generate-docs.ts -------------------------------------------------------------------------------- /scripts/lint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/scripts/lint.ts -------------------------------------------------------------------------------- /scripts/post-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/scripts/post-build.ts -------------------------------------------------------------------------------- /scripts/pre-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/scripts/pre-build.ts -------------------------------------------------------------------------------- /scripts/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/scripts/preload.ts -------------------------------------------------------------------------------- /source.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/source.config.ts -------------------------------------------------------------------------------- /src/app/(home)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/(home)/layout.tsx -------------------------------------------------------------------------------- /src/app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/(home)/page.tsx -------------------------------------------------------------------------------- /src/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/api/chat/route.ts -------------------------------------------------------------------------------- /src/app/api/proxy/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/api/proxy/route.ts -------------------------------------------------------------------------------- /src/app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/api/search/route.ts -------------------------------------------------------------------------------- /src/app/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /src/app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/docs/layout.tsx -------------------------------------------------------------------------------- /src/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/icon.png -------------------------------------------------------------------------------- /src/app/layout.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/layout.client.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/llms-full.txt/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/llms-full.txt/route.ts -------------------------------------------------------------------------------- /src/app/llms.mdx/[[...slug]]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/llms.mdx/[[...slug]]/route.ts -------------------------------------------------------------------------------- /src/app/llms.txt/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/llms.txt/route.ts -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/og/[...slug]/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/og/[...slug]/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /src/app/og/[...slug]/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/og/[...slug]/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /src/app/og/[...slug]/fonts/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/og/[...slug]/fonts/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /src/app/og/[...slug]/generate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/og/[...slug]/generate.tsx -------------------------------------------------------------------------------- /src/app/og/[...slug]/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/og/[...slug]/route.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /src/app/rss.xml/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/rss.xml/route.ts -------------------------------------------------------------------------------- /src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/app/sitemap.ts -------------------------------------------------------------------------------- /src/components/api-page.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/api-page.client.tsx -------------------------------------------------------------------------------- /src/components/api-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/api-page.tsx -------------------------------------------------------------------------------- /src/components/docs-background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/docs-background.tsx -------------------------------------------------------------------------------- /src/components/fumadocs/ai/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/fumadocs/ai/markdown.tsx -------------------------------------------------------------------------------- /src/components/fumadocs/ai/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/fumadocs/ai/search.tsx -------------------------------------------------------------------------------- /src/components/fumadocs/ai/tool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/fumadocs/ai/tool.tsx -------------------------------------------------------------------------------- /src/components/fumadocs/ai/tools/get-page-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/fumadocs/ai/tools/get-page-content.tsx -------------------------------------------------------------------------------- /src/components/fumadocs/ai/tools/provide-links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/fumadocs/ai/tools/provide-links.tsx -------------------------------------------------------------------------------- /src/components/fumadocs/ai/tools/search-docs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/fumadocs/ai/tools/search-docs.tsx -------------------------------------------------------------------------------- /src/components/fumadocs/page-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/fumadocs/page-actions.tsx -------------------------------------------------------------------------------- /src/components/fumadocs/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/fumadocs/ui/button.tsx -------------------------------------------------------------------------------- /src/components/fumadocs/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/fumadocs/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/fumadocs/updates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/fumadocs/updates.tsx -------------------------------------------------------------------------------- /src/components/mdx/mermaid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/mdx/mermaid.tsx -------------------------------------------------------------------------------- /src/components/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/search.tsx -------------------------------------------------------------------------------- /src/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/theme-toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/ui/icon.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/lib/ai/prompts/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/ai/prompts/core.ts -------------------------------------------------------------------------------- /src/lib/ai/prompts/examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/ai/prompts/examples.ts -------------------------------------------------------------------------------- /src/lib/ai/prompts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/ai/prompts/index.ts -------------------------------------------------------------------------------- /src/lib/ai/prompts/llms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/ai/prompts/llms.ts -------------------------------------------------------------------------------- /src/lib/ai/prompts/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/ai/prompts/tools.ts -------------------------------------------------------------------------------- /src/lib/ai/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/ai/providers.ts -------------------------------------------------------------------------------- /src/lib/ai/qa-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/ai/qa-schema.ts -------------------------------------------------------------------------------- /src/lib/ai/tools/get-page-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/ai/tools/get-page-content.ts -------------------------------------------------------------------------------- /src/lib/ai/tools/provide-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/ai/tools/provide-links.ts -------------------------------------------------------------------------------- /src/lib/ai/tools/search-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/ai/tools/search-docs.ts -------------------------------------------------------------------------------- /src/lib/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/cn.ts -------------------------------------------------------------------------------- /src/lib/constants/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/constants/category.ts -------------------------------------------------------------------------------- /src/lib/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/constants/index.ts -------------------------------------------------------------------------------- /src/lib/constants/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/constants/tags.ts -------------------------------------------------------------------------------- /src/lib/fumadocs/cn.ts: -------------------------------------------------------------------------------- 1 | export { twMerge as cn } from 'tailwind-merge' 2 | -------------------------------------------------------------------------------- /src/lib/get-llm-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/get-llm-text.ts -------------------------------------------------------------------------------- /src/lib/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/github.ts -------------------------------------------------------------------------------- /src/lib/layout.shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/layout.shared.tsx -------------------------------------------------------------------------------- /src/lib/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/metadata.ts -------------------------------------------------------------------------------- /src/lib/openapi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/openapi/index.ts -------------------------------------------------------------------------------- /src/lib/page-tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/page-tree.ts -------------------------------------------------------------------------------- /src/lib/rss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/rss.ts -------------------------------------------------------------------------------- /src/lib/source.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/source.tsx -------------------------------------------------------------------------------- /src/lib/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/lib/url.ts -------------------------------------------------------------------------------- /src/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/mdx-components.tsx -------------------------------------------------------------------------------- /src/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/proxy.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/HEAD/tsconfig.json --------------------------------------------------------------------------------