Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 添加link #88

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 45 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion

import {themes as prismThemes} from 'prism-react-renderer';
import { themes as prismThemes } from 'prism-react-renderer';

/** @type {import('@docusaurus/types').Config} */
const config = {
Expand Down Expand Up @@ -116,6 +116,11 @@ const config = {
type: "search",
position: 'right'
},
{
href: 'https://github.com/babyfish-ct/jimmer-doc',
label: 'Docs',
position: 'right',
},
{
href: 'https://github.com/babyfish-ct/jimmer',
label: 'GitHub',
Expand All @@ -127,12 +132,50 @@ const config = {
style: 'dark',
links: [
{
title: 'Docs',
title: 'Learn',
items: [
{
label: 'Tutorial',
to: '/docs/overview/introduction',
},
{
label: 'Examples',
to: 'https://github.com/babyfish-ct/jimmer-examples',
},
{
label: 'Github',
href: 'https://github.com/babyfish-ct/jimmer',
},
{
label: 'Github Docs',
href: 'https://github.com/babyfish-ct/jimmer-doc',
},
],
},
{
title: 'Community',
items: [
{
label: 'Discord',
href: 'https://discord.gg/PmgR5mpY3E',
},
{
label: 'QQ Group',
href: 'https://qm.qq.com/q/GoakYJDFCi',
},
],
},
{
title: 'Video',
items: [
{
label: 'babyfish-ct Bilibili',
to: 'https://space.bilibili.com/402978157/video',
},
{
label: 'Other Bilibili',
to: 'https://space.bilibili.com/2440641/channel/collectiondetail?sid=3937541&spm_id_from=333.788.0.0',
},
],
},
],
Expand Down
Loading