Skip to content
Merged
Show file tree
Hide file tree
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
11 changes: 10 additions & 1 deletion docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,11 @@ const config = {
type: 'docsVersionDropdown',
position: "right",
},
{
to: '/careers',
label: 'Join Us',
position: 'right',
},
{
type: 'localeDropdown',
position: 'right',
Expand Down Expand Up @@ -234,6 +239,10 @@ const config = {
{
title: 'More',
items: [
{
label: 'Join Us',
to: '/careers',
},
{
label: 'GitHub',
href: 'https://github.com/alibaba/ROCK',
Expand All @@ -250,4 +259,4 @@ const config = {
}),
};

export default config;
export default config;
5 changes: 4 additions & 1 deletion docs/i18n/zh-Hans/code.json
Original file line number Diff line number Diff line change
Expand Up @@ -463,10 +463,13 @@
"Follow us on X": {
"message": "关注我们的 X 账号"
},
"Join Us": {
"message": "加入我们"
},
"Home": {
"message": "首页"
},
"Docs": {
"message": "文档"
}
}
}
4 changes: 4 additions & 0 deletions docs/i18n/zh-Hans/docusaurus-theme-classic/footer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
"message": "GitHub",
"description": "The label of footer link with label=GitHub linking to https://github.com/alibaba/ROCK"
},
"link.item.label.Join Us": {
"message": "加入我们",
"description": "The label of footer link with label=Join Us linking to /careers"
},
"copyright": {
"message": "Copyright © 2025 Alibaba.",
"description": "The footer copyright"
Expand Down
4 changes: 4 additions & 0 deletions docs/i18n/zh-Hans/docusaurus-theme-classic/navbar.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
"message": "文档",
"description": "Navbar item with label Docs"
},
"item.label.Join Us": {
"message": "加入我们",
"description": "Navbar item with label Join Us"
},
"item.label.DeepWiki": {
"message": "DeepWiki",
"description": "Navbar item with label DeepWiki"
Expand Down
7 changes: 6 additions & 1 deletion docs/src/components/HomePage/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState, useEffect, useRef } from 'react';
import { Button, Image, Modal, ConfigProvider, theme } from 'antd';
import { GithubOutlined, WechatOutlined, XOutlined } from '@ant-design/icons';
import { GithubOutlined, UsergroupAddOutlined, WechatOutlined, XOutlined } from '@ant-design/icons';
import clsx from 'clsx';
import dayjs from 'dayjs';
import CountUp from 'react-countup';
Expand Down Expand Up @@ -441,6 +441,11 @@ export default ({ currentLocale }) => {
Follow us on X
</Translate>
</Button>
<Button href={isChinese ? '/ROCK/zh-Hans/careers' : '/ROCK/careers'} icon={<UsergroupAddOutlined />} className={styles.github} variant='outlined'>
<Translate>
Join Us
</Translate>
</Button>
</div>
</div>
</div>
Expand Down
Loading
Loading