📝 Docs: 升级新版 NonePress 主题 (#2375)

This commit is contained in:
Ju4tCode
2023-09-27 16:00:26 +08:00
committed by GitHub
parent 7754f6da1d
commit 842c6ff4c6
234 changed files with 8759 additions and 5887 deletions

View File

@ -0,0 +1,20 @@
import React from "react";
import { translate } from "@docusaurus/Translate";
import PluginPageContent from "@/components/Store/Content/Plugin";
import StoreLayout from "@/components/Store/Layout";
export default function StorePlugins(): JSX.Element {
const title = translate({
id: "pages.store.plugin.title",
message: "插件商店",
description: "Title for the plugin store page",
});
return (
<StoreLayout title={title}>
<PluginPageContent />
</StoreLayout>
);
}