├── .changeset └── config.json ├── .github ├── CONTRIBUTING.md ├── actions │ └── install-dependencies │ │ └── action.yml ├── dependabot.yml ├── vocs-logo-dark.svg ├── vocs-logo-light.svg └── workflows │ ├── main.yml │ ├── prerelease.yml │ ├── pull-request.yml │ └── verify.yml ├── .gitignore ├── .npmrc ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── api └── og.tsx ├── biome.json ├── create-vocs ├── CHANGELOG.md ├── bin.ts ├── index.ts ├── init.ts ├── package.json ├── templates │ └── default │ │ ├── .gitignore │ │ ├── README.md │ │ ├── docs │ │ └── pages │ │ │ ├── example.mdx │ │ │ ├── getting-started.mdx │ │ │ └── index.mdx │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── vocs.config.ts └── tsconfig.build.json ├── package.json ├── playgrounds ├── config-json │ ├── docs │ │ └── pages │ │ │ └── index.mdx │ ├── package.json │ └── vocs.config.json ├── config-toml │ ├── Vocs.toml │ ├── docs │ │ └── pages │ │ │ └── index.mdx │ └── package.json ├── custom-layout │ ├── .env.example │ ├── docs │ │ ├── layout.tsx │ │ ├── pages │ │ │ ├── index.mdx │ │ │ └── subpage.mdx │ │ └── styles.css │ ├── package.json │ └── vocs.config.ts ├── default │ ├── docs │ │ └── pages │ │ │ └── index.mdx │ ├── package.json │ └── vocs.config.ts └── tailwind │ ├── docs │ ├── pages │ │ └── index.mdx │ └── styles.css │ └── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── postbuild.ts ├── preconstruct.ts └── prepublish.ts ├── site ├── components │ ├── Example.tsx │ └── MyButton.tsx ├── footer.tsx ├── pages │ ├── blank.mdx │ ├── blog │ │ ├── gm.mdx │ │ └── index.mdx │ ├── docs │ │ ├── api │ │ │ ├── config.mdx │ │ │ └── frontmatter.mdx │ │ ├── guides │ │ │ ├── blog.mdx │ │ │ ├── code-snippets.mdx │ │ │ ├── components.mdx │ │ │ ├── layouts.mdx │ │ │ ├── markdown-snippets.mdx │ │ │ ├── navigation.mdx │ │ │ ├── og-images.mdx │ │ │ ├── styling.mdx │ │ │ ├── theming.mdx │ │ │ └── twoslash.mdx │ │ ├── index.mdx │ │ ├── kitchen-sink.mdx │ │ ├── markdown.mdx │ │ └── structure.mdx │ └── index.mdx ├── public │ ├── og.png │ ├── vocs-icon-dark.svg │ ├── vocs-icon-light.svg │ ├── vocs-logo-dark.svg │ └── vocs-logo-light.svg ├── snippets │ └── example.ts └── styles.css ├── src ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app │ ├── components │ │ ├── AiCtaDropdown.css.ts │ │ ├── AiCtaDropdown.tsx │ │ ├── Authors.css.ts │ │ ├── Authors.tsx │ │ ├── Banner.css.ts │ │ ├── Banner.tsx │ │ ├── BlogPosts.css.ts │ │ ├── BlogPosts.tsx │ │ ├── Button.css.ts │ │ ├── Button.tsx │ │ ├── Callout.css.ts │ │ ├── Callout.tsx │ │ ├── Content.css.ts │ │ ├── Content.tsx │ │ ├── CopyButton.css.ts │ │ ├── CopyButton.tsx │ │ ├── DesktopSearch.css.ts │ │ ├── DesktopSearch.tsx │ │ ├── DesktopTopNav.css.ts │ │ ├── DesktopTopNav.tsx │ │ ├── ExternalLink.css.ts │ │ ├── ExternalLink.tsx │ │ ├── Footer.css.ts │ │ ├── Footer.tsx │ │ ├── HomePage.css.ts │ │ ├── HomePage.tsx │ │ ├── Icon.css.ts │ │ ├── Icon.tsx │ │ ├── KeyboardShortcut.css.ts │ │ ├── KeyboardShortcut.tsx │ │ ├── Link.css.ts │ │ ├── Link.tsx │ │ ├── Logo.css.ts │ │ ├── Logo.tsx │ │ ├── MobileSearch.css.ts │ │ ├── MobileSearch.tsx │ │ ├── MobileTopNav.css.ts │ │ ├── MobileTopNav.tsx │ │ ├── NavLogo.css.ts │ │ ├── NavLogo.tsx │ │ ├── NavigationMenu.css.ts │ │ ├── NavigationMenu.tsx │ │ ├── NotFound.css.ts │ │ ├── NotFound.tsx │ │ ├── Outline.css.ts │ │ ├── Outline.tsx │ │ ├── Popover.css.ts │ │ ├── Popover.tsx │ │ ├── Raw.tsx │ │ ├── RouterLink.tsx │ │ ├── SearchDialog.css.ts │ │ ├── SearchDialog.tsx │ │ ├── Sidebar.css.ts │ │ ├── Sidebar.tsx │ │ ├── SkipLink.css.ts │ │ ├── SkipLink.tsx │ │ ├── Socials.css.ts │ │ ├── Socials.tsx │ │ ├── Sponsors.css.ts │ │ ├── Sponsors.tsx │ │ ├── Step.css.ts │ │ ├── Step.tsx │ │ ├── Steps.css.ts │ │ ├── Steps.tsx │ │ ├── Tabs.css.ts │ │ ├── Tabs.tsx │ │ ├── ThemeToggle.css.ts │ │ ├── ThemeToggle.tsx │ │ ├── icons │ │ │ ├── ArrowDiagonal.tsx │ │ │ ├── ArrowLeft.tsx │ │ │ ├── ArrowRight.tsx │ │ │ ├── Bluesky.tsx │ │ │ ├── CheckCircle.tsx │ │ │ ├── Checkmark.tsx │ │ │ ├── ChevronDown.tsx │ │ │ ├── ChevronRight.tsx │ │ │ ├── ChevronUp.tsx │ │ │ ├── Copy.tsx │ │ │ ├── Discord.tsx │ │ │ ├── ExclamationTriangle.tsx │ │ │ ├── Farcaster.tsx │ │ │ ├── File.tsx │ │ │ ├── GitHub.tsx │ │ │ ├── InfoCircled.tsx │ │ │ ├── LightningBolt.tsx │ │ │ ├── Link.tsx │ │ │ ├── Menu.tsx │ │ │ ├── Moon.tsx │ │ │ ├── OpenAi.tsx │ │ │ ├── Sun.tsx │ │ │ ├── Telegram.tsx │ │ │ ├── Terminal.tsx │ │ │ ├── Warpcast.tsx │ │ │ └── X.tsx │ │ └── mdx │ │ │ ├── Anchor.css.ts │ │ │ ├── Anchor.tsx │ │ │ ├── Aside.css.ts │ │ │ ├── Aside.tsx │ │ │ ├── Autolink.css.ts │ │ │ ├── Autolink.tsx │ │ │ ├── AutolinkIcon.css.ts │ │ │ ├── AutolinkIcon.tsx │ │ │ ├── Blockquote.css.ts │ │ │ ├── Blockquote.tsx │ │ │ ├── Code.css.ts │ │ │ ├── Code.tsx │ │ │ ├── CodeBlock.css.ts │ │ │ ├── CodeBlock.tsx │ │ │ ├── CodeGroup.css.ts │ │ │ ├── CodeGroup.tsx │ │ │ ├── CodeTitle.css.ts │ │ │ ├── CodeTitle.tsx │ │ │ ├── Details.css.ts │ │ │ ├── Details.tsx │ │ │ ├── Div.css.ts │ │ │ ├── Div.tsx │ │ │ ├── Figcaption.css.ts │ │ │ ├── Figcaption.tsx │ │ │ ├── Figure.css.ts │ │ │ ├── Figure.tsx │ │ │ ├── Footnotes.css.ts │ │ │ ├── Footnotes.tsx │ │ │ ├── H1.css.ts │ │ │ ├── H1.tsx │ │ │ ├── H2.css.ts │ │ │ ├── H2.tsx │ │ │ ├── H3.css.ts │ │ │ ├── H3.tsx │ │ │ ├── H4.css.ts │ │ │ ├── H4.tsx │ │ │ ├── H5.css.ts │ │ │ ├── H5.tsx │ │ │ ├── H6.css.ts │ │ │ ├── H6.tsx │ │ │ ├── Header.css.ts │ │ │ ├── Header.tsx │ │ │ ├── Heading.css.ts │ │ │ ├── Heading.tsx │ │ │ ├── HorizontalRule.css.ts │ │ │ ├── HorizontalRule.tsx │ │ │ ├── Kbd.css.ts │ │ │ ├── Kbd.tsx │ │ │ ├── List.css.ts │ │ │ ├── List.tsx │ │ │ ├── ListItem.css.ts │ │ │ ├── ListItem.tsx │ │ │ ├── Paragraph.css.ts │ │ │ ├── Paragraph.tsx │ │ │ ├── Pre.css.ts │ │ │ ├── Pre.tsx │ │ │ ├── Section.css.ts │ │ │ ├── Section.tsx │ │ │ ├── Span.css.ts │ │ │ ├── Span.tsx │ │ │ ├── Steps.tsx │ │ │ ├── Strong.css.ts │ │ │ ├── Strong.tsx │ │ │ ├── Subtitle.css.ts │ │ │ ├── Subtitle.tsx │ │ │ ├── Summary.css.ts │ │ │ ├── Summary.tsx │ │ │ ├── Table.css.ts │ │ │ ├── Table.tsx │ │ │ ├── TableCell.css.ts │ │ │ ├── TableCell.tsx │ │ │ ├── TableHeader.css.ts │ │ │ ├── TableHeader.tsx │ │ │ ├── TableRow.css.ts │ │ │ ├── TableRow.tsx │ │ │ ├── TwoslashPopover.tsx │ │ │ └── index.tsx │ ├── dom.d.ts │ ├── hooks │ │ ├── useActiveNavIds.ts │ │ ├── useConfig.tsx │ │ ├── useCopyCode.ts │ │ ├── useDebounce.ts │ │ ├── useEditLink.ts │ │ ├── useLayout.tsx │ │ ├── useLocalStorage.ts │ │ ├── useMediaQuery.ts │ │ ├── useMounted.ts │ │ ├── useOgImageUrl.ts │ │ ├── usePageData.ts │ │ ├── useSearchIndex.ts │ │ ├── useSessionStorage.ts │ │ ├── useSidebar.ts │ │ └── useTheme.ts │ ├── index.client.tsx │ ├── index.server.tsx │ ├── layouts │ │ ├── DocsLayout.css.ts │ │ └── DocsLayout.tsx │ ├── public │ │ └── .vocs │ │ │ └── icons │ │ │ ├── arrow-diagonal.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-up.svg │ │ │ └── link.svg │ ├── root.tsx │ ├── routes.tsx │ ├── styles │ │ ├── base.css.ts │ │ ├── global.css.ts │ │ ├── index.css.ts │ │ ├── reset.css.ts │ │ ├── shiki.css.ts │ │ ├── twoslash.css.ts │ │ ├── utils.css.ts │ │ └── vars.css.ts │ ├── types.ts │ ├── utils │ │ ├── createFetchRequest.ts │ │ ├── debounce.ts │ │ ├── deserializeElement.ts │ │ ├── hydrateLazyRoutes.ts │ │ ├── initializeTheme.ts │ │ ├── mergeRefs.ts │ │ └── removeTempStyles.ts │ └── vite-env.d.ts ├── cli │ ├── commands │ │ ├── build.ts │ │ ├── dev.ts │ │ ├── preview.ts │ │ ├── search-index.ts │ │ └── twoslash.ts │ ├── index.ts │ └── version.ts ├── components.ts ├── config.ts ├── index.ts ├── mdx-react.ts ├── package.json └── vite │ ├── build.ts │ ├── buildSearchIndex.ts │ ├── buildTwoslash.ts │ ├── devServer.ts │ ├── index.html │ ├── plugins │ ├── css.ts │ ├── dev.tsx │ ├── llms.ts │ ├── mdx.ts │ ├── postbuild.ts │ ├── rehype │ │ ├── display-shiki-notation.ts │ │ └── inline-shiki.ts │ ├── remark │ │ ├── authors.ts │ │ ├── blog-posts.ts │ │ ├── callout.ts │ │ ├── code-group.ts │ │ ├── code.ts │ │ ├── details.ts │ │ ├── filename.ts │ │ ├── inferred-frontmatter.ts │ │ ├── links.ts │ │ ├── sponsors.ts │ │ ├── steps.ts │ │ ├── strong-block.ts │ │ ├── subheading.ts │ │ └── twoslash.ts │ ├── resolve-vocs-modules.ts │ ├── search.ts │ ├── shiki │ │ ├── transformerCustomTags.ts │ │ ├── transformerEmptyLine.ts │ │ ├── transformerLineNumbers.ts │ │ ├── transformerNotationInclude.ts │ │ ├── transformerShrinkIndent.ts │ │ ├── transformerSplitIdentifiers.ts │ │ ├── transformerTagLine.ts │ │ ├── transformerTitle.ts │ │ ├── twoslashRenderer.ts │ │ ├── twoslasher.ts │ │ └── utils.ts │ ├── splitVendorChunk.ts │ ├── virtual-blog.ts │ ├── virtual-config.ts │ ├── virtual-consumer-components.ts │ ├── virtual-routes.ts │ └── virtual-styles.ts │ ├── prerender.tsx │ ├── preview.ts │ ├── utils │ ├── cache.ts │ ├── getGitTimestamp.ts │ ├── hash.ts │ ├── html.tsx │ ├── resolveOutDir.ts │ ├── resolveVocsConfig.ts │ ├── search.ts │ ├── serveStatic.ts │ ├── slash.ts │ └── vercel.ts │ └── vite.config.ts ├── tsconfig.base.json ├── tsconfig.build.json ├── tsconfig.json ├── vercel.json └── vocs.config.tsx /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/actions/install-dependencies/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.github/actions/install-dependencies/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/vocs-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.github/vocs-logo-dark.svg -------------------------------------------------------------------------------- /.github/vocs-logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.github/vocs-logo-light.svg -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.github/workflows/prerelease.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | src/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | src/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | src/README.md -------------------------------------------------------------------------------- /api/og.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/api/og.tsx -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/biome.json -------------------------------------------------------------------------------- /create-vocs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/CHANGELOG.md -------------------------------------------------------------------------------- /create-vocs/bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/bin.ts -------------------------------------------------------------------------------- /create-vocs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/index.ts -------------------------------------------------------------------------------- /create-vocs/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/init.ts -------------------------------------------------------------------------------- /create-vocs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/package.json -------------------------------------------------------------------------------- /create-vocs/templates/default/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/templates/default/.gitignore -------------------------------------------------------------------------------- /create-vocs/templates/default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/templates/default/README.md -------------------------------------------------------------------------------- /create-vocs/templates/default/docs/pages/example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/templates/default/docs/pages/example.mdx -------------------------------------------------------------------------------- /create-vocs/templates/default/docs/pages/getting-started.mdx: -------------------------------------------------------------------------------- 1 | # Get started 2 | 3 | Hello world! -------------------------------------------------------------------------------- /create-vocs/templates/default/docs/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/templates/default/docs/pages/index.mdx -------------------------------------------------------------------------------- /create-vocs/templates/default/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/templates/default/package.json -------------------------------------------------------------------------------- /create-vocs/templates/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/templates/default/tsconfig.json -------------------------------------------------------------------------------- /create-vocs/templates/default/vocs.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/templates/default/vocs.config.ts -------------------------------------------------------------------------------- /create-vocs/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/create-vocs/tsconfig.build.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/package.json -------------------------------------------------------------------------------- /playgrounds/config-json/docs/pages/index.mdx: -------------------------------------------------------------------------------- 1 | # Hello world -------------------------------------------------------------------------------- /playgrounds/config-json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/config-json/package.json -------------------------------------------------------------------------------- /playgrounds/config-json/vocs.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/config-json/vocs.config.json -------------------------------------------------------------------------------- /playgrounds/config-toml/Vocs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/config-toml/Vocs.toml -------------------------------------------------------------------------------- /playgrounds/config-toml/docs/pages/index.mdx: -------------------------------------------------------------------------------- 1 | # Hello world -------------------------------------------------------------------------------- /playgrounds/config-toml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/config-toml/package.json -------------------------------------------------------------------------------- /playgrounds/custom-layout/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/custom-layout/.env.example -------------------------------------------------------------------------------- /playgrounds/custom-layout/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/custom-layout/docs/layout.tsx -------------------------------------------------------------------------------- /playgrounds/custom-layout/docs/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/custom-layout/docs/pages/index.mdx -------------------------------------------------------------------------------- /playgrounds/custom-layout/docs/pages/subpage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/custom-layout/docs/pages/subpage.mdx -------------------------------------------------------------------------------- /playgrounds/custom-layout/docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/custom-layout/docs/styles.css -------------------------------------------------------------------------------- /playgrounds/custom-layout/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/custom-layout/package.json -------------------------------------------------------------------------------- /playgrounds/custom-layout/vocs.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/custom-layout/vocs.config.ts -------------------------------------------------------------------------------- /playgrounds/default/docs/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/default/docs/pages/index.mdx -------------------------------------------------------------------------------- /playgrounds/default/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/default/package.json -------------------------------------------------------------------------------- /playgrounds/default/vocs.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/default/vocs.config.ts -------------------------------------------------------------------------------- /playgrounds/tailwind/docs/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/tailwind/docs/pages/index.mdx -------------------------------------------------------------------------------- /playgrounds/tailwind/docs/styles.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | -------------------------------------------------------------------------------- /playgrounds/tailwind/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/playgrounds/tailwind/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/scripts/postbuild.ts -------------------------------------------------------------------------------- /scripts/preconstruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/scripts/preconstruct.ts -------------------------------------------------------------------------------- /scripts/prepublish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/scripts/prepublish.ts -------------------------------------------------------------------------------- /site/components/Example.tsx: -------------------------------------------------------------------------------- 1 | export function Example() { 2 | return
Hello world.
3 | } 4 | -------------------------------------------------------------------------------- /site/components/MyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/components/MyButton.tsx -------------------------------------------------------------------------------- /site/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/footer.tsx -------------------------------------------------------------------------------- /site/pages/blank.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/blank.mdx -------------------------------------------------------------------------------- /site/pages/blog/gm.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | layout: minimal 3 | date: 2023-11-25 4 | --- 5 | 6 | # gm 7 | 8 | ::authors 9 | 10 | we're so back. -------------------------------------------------------------------------------- /site/pages/blog/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/blog/index.mdx -------------------------------------------------------------------------------- /site/pages/docs/api/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/api/config.mdx -------------------------------------------------------------------------------- /site/pages/docs/api/frontmatter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/api/frontmatter.mdx -------------------------------------------------------------------------------- /site/pages/docs/guides/blog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/guides/blog.mdx -------------------------------------------------------------------------------- /site/pages/docs/guides/code-snippets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/guides/code-snippets.mdx -------------------------------------------------------------------------------- /site/pages/docs/guides/components.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/guides/components.mdx -------------------------------------------------------------------------------- /site/pages/docs/guides/layouts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/guides/layouts.mdx -------------------------------------------------------------------------------- /site/pages/docs/guides/markdown-snippets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/guides/markdown-snippets.mdx -------------------------------------------------------------------------------- /site/pages/docs/guides/navigation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/guides/navigation.mdx -------------------------------------------------------------------------------- /site/pages/docs/guides/og-images.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/guides/og-images.mdx -------------------------------------------------------------------------------- /site/pages/docs/guides/styling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/guides/styling.mdx -------------------------------------------------------------------------------- /site/pages/docs/guides/theming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/guides/theming.mdx -------------------------------------------------------------------------------- /site/pages/docs/guides/twoslash.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/guides/twoslash.mdx -------------------------------------------------------------------------------- /site/pages/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/index.mdx -------------------------------------------------------------------------------- /site/pages/docs/kitchen-sink.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/kitchen-sink.mdx -------------------------------------------------------------------------------- /site/pages/docs/markdown.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/markdown.mdx -------------------------------------------------------------------------------- /site/pages/docs/structure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/docs/structure.mdx -------------------------------------------------------------------------------- /site/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/pages/index.mdx -------------------------------------------------------------------------------- /site/public/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/public/og.png -------------------------------------------------------------------------------- /site/public/vocs-icon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/public/vocs-icon-dark.svg -------------------------------------------------------------------------------- /site/public/vocs-icon-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/public/vocs-icon-light.svg -------------------------------------------------------------------------------- /site/public/vocs-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/public/vocs-logo-dark.svg -------------------------------------------------------------------------------- /site/public/vocs-logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/public/vocs-logo-light.svg -------------------------------------------------------------------------------- /site/snippets/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/snippets/example.ts -------------------------------------------------------------------------------- /site/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/site/styles.css -------------------------------------------------------------------------------- /src/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/CHANGELOG.md -------------------------------------------------------------------------------- /src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/LICENSE -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/README.md -------------------------------------------------------------------------------- /src/app/components/AiCtaDropdown.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/AiCtaDropdown.css.ts -------------------------------------------------------------------------------- /src/app/components/AiCtaDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/AiCtaDropdown.tsx -------------------------------------------------------------------------------- /src/app/components/Authors.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Authors.css.ts -------------------------------------------------------------------------------- /src/app/components/Authors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Authors.tsx -------------------------------------------------------------------------------- /src/app/components/Banner.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Banner.css.ts -------------------------------------------------------------------------------- /src/app/components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Banner.tsx -------------------------------------------------------------------------------- /src/app/components/BlogPosts.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/BlogPosts.css.ts -------------------------------------------------------------------------------- /src/app/components/BlogPosts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/BlogPosts.tsx -------------------------------------------------------------------------------- /src/app/components/Button.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Button.css.ts -------------------------------------------------------------------------------- /src/app/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Button.tsx -------------------------------------------------------------------------------- /src/app/components/Callout.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Callout.css.ts -------------------------------------------------------------------------------- /src/app/components/Callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Callout.tsx -------------------------------------------------------------------------------- /src/app/components/Content.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Content.css.ts -------------------------------------------------------------------------------- /src/app/components/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Content.tsx -------------------------------------------------------------------------------- /src/app/components/CopyButton.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/CopyButton.css.ts -------------------------------------------------------------------------------- /src/app/components/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/CopyButton.tsx -------------------------------------------------------------------------------- /src/app/components/DesktopSearch.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/DesktopSearch.css.ts -------------------------------------------------------------------------------- /src/app/components/DesktopSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/DesktopSearch.tsx -------------------------------------------------------------------------------- /src/app/components/DesktopTopNav.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/DesktopTopNav.css.ts -------------------------------------------------------------------------------- /src/app/components/DesktopTopNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/DesktopTopNav.tsx -------------------------------------------------------------------------------- /src/app/components/ExternalLink.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/ExternalLink.css.ts -------------------------------------------------------------------------------- /src/app/components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/ExternalLink.tsx -------------------------------------------------------------------------------- /src/app/components/Footer.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Footer.css.ts -------------------------------------------------------------------------------- /src/app/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Footer.tsx -------------------------------------------------------------------------------- /src/app/components/HomePage.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/HomePage.css.ts -------------------------------------------------------------------------------- /src/app/components/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/HomePage.tsx -------------------------------------------------------------------------------- /src/app/components/Icon.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Icon.css.ts -------------------------------------------------------------------------------- /src/app/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Icon.tsx -------------------------------------------------------------------------------- /src/app/components/KeyboardShortcut.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/KeyboardShortcut.css.ts -------------------------------------------------------------------------------- /src/app/components/KeyboardShortcut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/KeyboardShortcut.tsx -------------------------------------------------------------------------------- /src/app/components/Link.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Link.css.ts -------------------------------------------------------------------------------- /src/app/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Link.tsx -------------------------------------------------------------------------------- /src/app/components/Logo.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Logo.css.ts -------------------------------------------------------------------------------- /src/app/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Logo.tsx -------------------------------------------------------------------------------- /src/app/components/MobileSearch.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/MobileSearch.css.ts -------------------------------------------------------------------------------- /src/app/components/MobileSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/MobileSearch.tsx -------------------------------------------------------------------------------- /src/app/components/MobileTopNav.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/MobileTopNav.css.ts -------------------------------------------------------------------------------- /src/app/components/MobileTopNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/MobileTopNav.tsx -------------------------------------------------------------------------------- /src/app/components/NavLogo.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/NavLogo.css.ts -------------------------------------------------------------------------------- /src/app/components/NavLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/NavLogo.tsx -------------------------------------------------------------------------------- /src/app/components/NavigationMenu.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/NavigationMenu.css.ts -------------------------------------------------------------------------------- /src/app/components/NavigationMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/NavigationMenu.tsx -------------------------------------------------------------------------------- /src/app/components/NotFound.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/NotFound.css.ts -------------------------------------------------------------------------------- /src/app/components/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/NotFound.tsx -------------------------------------------------------------------------------- /src/app/components/Outline.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Outline.css.ts -------------------------------------------------------------------------------- /src/app/components/Outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Outline.tsx -------------------------------------------------------------------------------- /src/app/components/Popover.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Popover.css.ts -------------------------------------------------------------------------------- /src/app/components/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Popover.tsx -------------------------------------------------------------------------------- /src/app/components/Raw.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Raw.tsx -------------------------------------------------------------------------------- /src/app/components/RouterLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/RouterLink.tsx -------------------------------------------------------------------------------- /src/app/components/SearchDialog.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/SearchDialog.css.ts -------------------------------------------------------------------------------- /src/app/components/SearchDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/SearchDialog.tsx -------------------------------------------------------------------------------- /src/app/components/Sidebar.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Sidebar.css.ts -------------------------------------------------------------------------------- /src/app/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/app/components/SkipLink.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/SkipLink.css.ts -------------------------------------------------------------------------------- /src/app/components/SkipLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/SkipLink.tsx -------------------------------------------------------------------------------- /src/app/components/Socials.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Socials.css.ts -------------------------------------------------------------------------------- /src/app/components/Socials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Socials.tsx -------------------------------------------------------------------------------- /src/app/components/Sponsors.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Sponsors.css.ts -------------------------------------------------------------------------------- /src/app/components/Sponsors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Sponsors.tsx -------------------------------------------------------------------------------- /src/app/components/Step.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Step.css.ts -------------------------------------------------------------------------------- /src/app/components/Step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Step.tsx -------------------------------------------------------------------------------- /src/app/components/Steps.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Steps.css.ts -------------------------------------------------------------------------------- /src/app/components/Steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Steps.tsx -------------------------------------------------------------------------------- /src/app/components/Tabs.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Tabs.css.ts -------------------------------------------------------------------------------- /src/app/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/Tabs.tsx -------------------------------------------------------------------------------- /src/app/components/ThemeToggle.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/ThemeToggle.css.ts -------------------------------------------------------------------------------- /src/app/components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/app/components/icons/ArrowDiagonal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/ArrowDiagonal.tsx -------------------------------------------------------------------------------- /src/app/components/icons/ArrowLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/ArrowLeft.tsx -------------------------------------------------------------------------------- /src/app/components/icons/ArrowRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/ArrowRight.tsx -------------------------------------------------------------------------------- /src/app/components/icons/Bluesky.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/Bluesky.tsx -------------------------------------------------------------------------------- /src/app/components/icons/CheckCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/CheckCircle.tsx -------------------------------------------------------------------------------- /src/app/components/icons/Checkmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/Checkmark.tsx -------------------------------------------------------------------------------- /src/app/components/icons/ChevronDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/ChevronDown.tsx -------------------------------------------------------------------------------- /src/app/components/icons/ChevronRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/ChevronRight.tsx -------------------------------------------------------------------------------- /src/app/components/icons/ChevronUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/ChevronUp.tsx -------------------------------------------------------------------------------- /src/app/components/icons/Copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/Copy.tsx -------------------------------------------------------------------------------- /src/app/components/icons/Discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/Discord.tsx -------------------------------------------------------------------------------- /src/app/components/icons/ExclamationTriangle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/ExclamationTriangle.tsx -------------------------------------------------------------------------------- /src/app/components/icons/Farcaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/Farcaster.tsx -------------------------------------------------------------------------------- /src/app/components/icons/File.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/File.tsx -------------------------------------------------------------------------------- /src/app/components/icons/GitHub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/GitHub.tsx -------------------------------------------------------------------------------- /src/app/components/icons/InfoCircled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/InfoCircled.tsx -------------------------------------------------------------------------------- /src/app/components/icons/LightningBolt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/LightningBolt.tsx -------------------------------------------------------------------------------- /src/app/components/icons/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/Link.tsx -------------------------------------------------------------------------------- /src/app/components/icons/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/Menu.tsx -------------------------------------------------------------------------------- /src/app/components/icons/Moon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/Moon.tsx -------------------------------------------------------------------------------- /src/app/components/icons/OpenAi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/OpenAi.tsx -------------------------------------------------------------------------------- /src/app/components/icons/Sun.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/Sun.tsx -------------------------------------------------------------------------------- /src/app/components/icons/Telegram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/Telegram.tsx -------------------------------------------------------------------------------- /src/app/components/icons/Terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/Terminal.tsx -------------------------------------------------------------------------------- /src/app/components/icons/Warpcast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/Warpcast.tsx -------------------------------------------------------------------------------- /src/app/components/icons/X.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/icons/X.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Anchor.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Anchor.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Anchor.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Aside.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Aside.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Aside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Aside.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Autolink.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Autolink.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Autolink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Autolink.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/AutolinkIcon.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/AutolinkIcon.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/AutolinkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/AutolinkIcon.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Blockquote.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Blockquote.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Blockquote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Blockquote.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Code.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Code.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Code.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/CodeBlock.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/CodeBlock.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/CodeBlock.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/CodeGroup.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/CodeGroup.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/CodeGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/CodeGroup.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/CodeTitle.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/CodeTitle.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/CodeTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/CodeTitle.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Details.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Details.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Details.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Div.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Div.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Div.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Div.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Figcaption.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Figcaption.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Figcaption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Figcaption.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Figure.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Figure.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Figure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Figure.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Footnotes.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Footnotes.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Footnotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Footnotes.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/H1.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/H1.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/H1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/H1.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/H2.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/H2.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/H2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/H2.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/H3.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/H3.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/H3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/H3.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/H4.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/H4.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/H4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/H4.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/H5.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/H5.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/H5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/H5.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/H6.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/H6.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/H6.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/H6.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Header.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Header.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Header.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Heading.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Heading.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Heading.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/HorizontalRule.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/HorizontalRule.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/HorizontalRule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/HorizontalRule.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Kbd.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Kbd.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Kbd.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/List.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/List.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/List.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/ListItem.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/ListItem.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/ListItem.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Paragraph.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Paragraph.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Paragraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Paragraph.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Pre.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Pre.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Pre.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Pre.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Section.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Section.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Section.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Span.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Span.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Span.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Span.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Steps.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Strong.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Strong.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Strong.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Strong.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Subtitle.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Subtitle.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Subtitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Subtitle.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Summary.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Summary.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Summary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Summary.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/Table.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Table.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/Table.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/TableCell.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/TableCell.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/TableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/TableCell.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/TableHeader.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/TableHeader.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/TableHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/TableHeader.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/TableRow.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/TableRow.css.ts -------------------------------------------------------------------------------- /src/app/components/mdx/TableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/TableRow.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/TwoslashPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/TwoslashPopover.tsx -------------------------------------------------------------------------------- /src/app/components/mdx/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/components/mdx/index.tsx -------------------------------------------------------------------------------- /src/app/dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/dom.d.ts -------------------------------------------------------------------------------- /src/app/hooks/useActiveNavIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useActiveNavIds.ts -------------------------------------------------------------------------------- /src/app/hooks/useConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useConfig.tsx -------------------------------------------------------------------------------- /src/app/hooks/useCopyCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useCopyCode.ts -------------------------------------------------------------------------------- /src/app/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useDebounce.ts -------------------------------------------------------------------------------- /src/app/hooks/useEditLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useEditLink.ts -------------------------------------------------------------------------------- /src/app/hooks/useLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useLayout.tsx -------------------------------------------------------------------------------- /src/app/hooks/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useLocalStorage.ts -------------------------------------------------------------------------------- /src/app/hooks/useMediaQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useMediaQuery.ts -------------------------------------------------------------------------------- /src/app/hooks/useMounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useMounted.ts -------------------------------------------------------------------------------- /src/app/hooks/useOgImageUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useOgImageUrl.ts -------------------------------------------------------------------------------- /src/app/hooks/usePageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/usePageData.ts -------------------------------------------------------------------------------- /src/app/hooks/useSearchIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useSearchIndex.ts -------------------------------------------------------------------------------- /src/app/hooks/useSessionStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useSessionStorage.ts -------------------------------------------------------------------------------- /src/app/hooks/useSidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useSidebar.ts -------------------------------------------------------------------------------- /src/app/hooks/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/hooks/useTheme.ts -------------------------------------------------------------------------------- /src/app/index.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/index.client.tsx -------------------------------------------------------------------------------- /src/app/index.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/index.server.tsx -------------------------------------------------------------------------------- /src/app/layouts/DocsLayout.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/layouts/DocsLayout.css.ts -------------------------------------------------------------------------------- /src/app/layouts/DocsLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/layouts/DocsLayout.tsx -------------------------------------------------------------------------------- /src/app/public/.vocs/icons/arrow-diagonal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/public/.vocs/icons/arrow-diagonal.svg -------------------------------------------------------------------------------- /src/app/public/.vocs/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/public/.vocs/icons/chevron-down.svg -------------------------------------------------------------------------------- /src/app/public/.vocs/icons/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/public/.vocs/icons/chevron-up.svg -------------------------------------------------------------------------------- /src/app/public/.vocs/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/public/.vocs/icons/link.svg -------------------------------------------------------------------------------- /src/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/root.tsx -------------------------------------------------------------------------------- /src/app/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/routes.tsx -------------------------------------------------------------------------------- /src/app/styles/base.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/styles/base.css.ts -------------------------------------------------------------------------------- /src/app/styles/global.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/styles/global.css.ts -------------------------------------------------------------------------------- /src/app/styles/index.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/styles/index.css.ts -------------------------------------------------------------------------------- /src/app/styles/reset.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/styles/reset.css.ts -------------------------------------------------------------------------------- /src/app/styles/shiki.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/styles/shiki.css.ts -------------------------------------------------------------------------------- /src/app/styles/twoslash.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/styles/twoslash.css.ts -------------------------------------------------------------------------------- /src/app/styles/utils.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/styles/utils.css.ts -------------------------------------------------------------------------------- /src/app/styles/vars.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/styles/vars.css.ts -------------------------------------------------------------------------------- /src/app/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/types.ts -------------------------------------------------------------------------------- /src/app/utils/createFetchRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/utils/createFetchRequest.ts -------------------------------------------------------------------------------- /src/app/utils/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/utils/debounce.ts -------------------------------------------------------------------------------- /src/app/utils/deserializeElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/utils/deserializeElement.ts -------------------------------------------------------------------------------- /src/app/utils/hydrateLazyRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/utils/hydrateLazyRoutes.ts -------------------------------------------------------------------------------- /src/app/utils/initializeTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/utils/initializeTheme.ts -------------------------------------------------------------------------------- /src/app/utils/mergeRefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/utils/mergeRefs.ts -------------------------------------------------------------------------------- /src/app/utils/removeTempStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/utils/removeTempStyles.ts -------------------------------------------------------------------------------- /src/app/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/app/vite-env.d.ts -------------------------------------------------------------------------------- /src/cli/commands/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/cli/commands/build.ts -------------------------------------------------------------------------------- /src/cli/commands/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/cli/commands/dev.ts -------------------------------------------------------------------------------- /src/cli/commands/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/cli/commands/preview.ts -------------------------------------------------------------------------------- /src/cli/commands/search-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/cli/commands/search-index.ts -------------------------------------------------------------------------------- /src/cli/commands/twoslash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/cli/commands/twoslash.ts -------------------------------------------------------------------------------- /src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/cli/index.ts -------------------------------------------------------------------------------- /src/cli/version.ts: -------------------------------------------------------------------------------- 1 | export const version = '1.0.0' 2 | -------------------------------------------------------------------------------- /src/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/components.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mdx-react.ts: -------------------------------------------------------------------------------- 1 | export * from '@mdx-js/react' 2 | -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/package.json -------------------------------------------------------------------------------- /src/vite/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/build.ts -------------------------------------------------------------------------------- /src/vite/buildSearchIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/buildSearchIndex.ts -------------------------------------------------------------------------------- /src/vite/buildTwoslash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/buildTwoslash.ts -------------------------------------------------------------------------------- /src/vite/devServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/devServer.ts -------------------------------------------------------------------------------- /src/vite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/index.html -------------------------------------------------------------------------------- /src/vite/plugins/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/css.ts -------------------------------------------------------------------------------- /src/vite/plugins/dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/dev.tsx -------------------------------------------------------------------------------- /src/vite/plugins/llms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/llms.ts -------------------------------------------------------------------------------- /src/vite/plugins/mdx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/mdx.ts -------------------------------------------------------------------------------- /src/vite/plugins/postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/postbuild.ts -------------------------------------------------------------------------------- /src/vite/plugins/rehype/display-shiki-notation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/rehype/display-shiki-notation.ts -------------------------------------------------------------------------------- /src/vite/plugins/rehype/inline-shiki.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/rehype/inline-shiki.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/authors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/authors.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/blog-posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/blog-posts.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/callout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/callout.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/code-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/code-group.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/code.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/details.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/filename.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/filename.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/inferred-frontmatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/inferred-frontmatter.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/links.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/sponsors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/sponsors.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/steps.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/strong-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/strong-block.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/subheading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/subheading.ts -------------------------------------------------------------------------------- /src/vite/plugins/remark/twoslash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/remark/twoslash.ts -------------------------------------------------------------------------------- /src/vite/plugins/resolve-vocs-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/resolve-vocs-modules.ts -------------------------------------------------------------------------------- /src/vite/plugins/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/search.ts -------------------------------------------------------------------------------- /src/vite/plugins/shiki/transformerCustomTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/shiki/transformerCustomTags.ts -------------------------------------------------------------------------------- /src/vite/plugins/shiki/transformerEmptyLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/shiki/transformerEmptyLine.ts -------------------------------------------------------------------------------- /src/vite/plugins/shiki/transformerLineNumbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/shiki/transformerLineNumbers.ts -------------------------------------------------------------------------------- /src/vite/plugins/shiki/transformerNotationInclude.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/shiki/transformerNotationInclude.ts -------------------------------------------------------------------------------- /src/vite/plugins/shiki/transformerShrinkIndent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/shiki/transformerShrinkIndent.ts -------------------------------------------------------------------------------- /src/vite/plugins/shiki/transformerSplitIdentifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/shiki/transformerSplitIdentifiers.ts -------------------------------------------------------------------------------- /src/vite/plugins/shiki/transformerTagLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/shiki/transformerTagLine.ts -------------------------------------------------------------------------------- /src/vite/plugins/shiki/transformerTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/shiki/transformerTitle.ts -------------------------------------------------------------------------------- /src/vite/plugins/shiki/twoslashRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/shiki/twoslashRenderer.ts -------------------------------------------------------------------------------- /src/vite/plugins/shiki/twoslasher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/shiki/twoslasher.ts -------------------------------------------------------------------------------- /src/vite/plugins/shiki/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/shiki/utils.ts -------------------------------------------------------------------------------- /src/vite/plugins/splitVendorChunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/splitVendorChunk.ts -------------------------------------------------------------------------------- /src/vite/plugins/virtual-blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/virtual-blog.ts -------------------------------------------------------------------------------- /src/vite/plugins/virtual-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/virtual-config.ts -------------------------------------------------------------------------------- /src/vite/plugins/virtual-consumer-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/virtual-consumer-components.ts -------------------------------------------------------------------------------- /src/vite/plugins/virtual-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/virtual-routes.ts -------------------------------------------------------------------------------- /src/vite/plugins/virtual-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/plugins/virtual-styles.ts -------------------------------------------------------------------------------- /src/vite/prerender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/prerender.tsx -------------------------------------------------------------------------------- /src/vite/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/preview.ts -------------------------------------------------------------------------------- /src/vite/utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/utils/cache.ts -------------------------------------------------------------------------------- /src/vite/utils/getGitTimestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/utils/getGitTimestamp.ts -------------------------------------------------------------------------------- /src/vite/utils/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/utils/hash.ts -------------------------------------------------------------------------------- /src/vite/utils/html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/utils/html.tsx -------------------------------------------------------------------------------- /src/vite/utils/resolveOutDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/utils/resolveOutDir.ts -------------------------------------------------------------------------------- /src/vite/utils/resolveVocsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/utils/resolveVocsConfig.ts -------------------------------------------------------------------------------- /src/vite/utils/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/utils/search.ts -------------------------------------------------------------------------------- /src/vite/utils/serveStatic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/utils/serveStatic.ts -------------------------------------------------------------------------------- /src/vite/utils/slash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/utils/slash.ts -------------------------------------------------------------------------------- /src/vite/utils/vercel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/utils/vercel.ts -------------------------------------------------------------------------------- /src/vite/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/src/vite/vite.config.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/vercel.json -------------------------------------------------------------------------------- /vocs.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wevm/vocs/HEAD/vocs.config.tsx --------------------------------------------------------------------------------