upgrade structures and migrate to nextra v4

This commit is contained in:
Zheyuan Wu
2025-07-06 12:40:25 -05:00
parent 76e50de44d
commit 717520624d
317 changed files with 18143 additions and 22777 deletions

11
mdx-components.js Normal file
View File

@@ -0,0 +1,11 @@
import { useMDXComponents as getDocsMDXComponents } from 'nextra-theme-docs'
const docsComponents = getDocsMDXComponents()
// Merge components
export const useMDXComponents = (components) => {
return {
...docsComponents,
...components
}
}