Add bilingual docs center and replace the guide modal

This commit is contained in:
2569718930@qq.com
2026-03-25 15:55:55 +08:00
parent b866ebf6e3
commit 4e0ddfa771
16 changed files with 1229 additions and 137 deletions
+5
View File
@@ -0,0 +1,5 @@
import { I18nProvider } from "@/hooks/useI18n";
export default function DocsLayout({ children }: { children: React.ReactNode }) {
return <I18nProvider>{children}</I18nProvider>;
}