This is an automated email from the ASF dual-hosted git repository.
benjobs pushed a commit to branch dev
in repository
https://gitbox.apache.org/repos/asf/incubator-streampark-website.git
The following commit(s) were added to refs/heads/dev by this push:
new 21bd5bc7 minor improvement
21bd5bc7 is described below
commit 21bd5bc7f768408c8d83736d74adb54772899cd4
Author: benjobs <[email protected]>
AuthorDate: Sun Sep 10 10:57:06 2023 +0800
minor improvement
---
src/pages/home/languages.json | 16 ++++++++--------
src/pages/team/index.jsx | 2 +-
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/pages/home/languages.json b/src/pages/home/languages.json
index 8e5ed3c4..db5c9bc2 100644
--- a/src/pages/home/languages.json
+++ b/src/pages/home/languages.json
@@ -57,17 +57,17 @@
{
"icon": "lni-code",
"title": "编写代码",
- "description": "使用 StreamPark 快速开始开发代码"
+ "description": "使用 StreamPark API 快速进行作业开发"
},
{
"icon": "lni-bug",
"title": "调试代码",
- "description": "传入约定的任务配置,开始本地代码调试"
+ "description": "传入 StreamPark 约定的配置,进行本地作业调试"
},
{
"icon": "lni-bolt-alt",
"title": "部署任务",
- "description": "使用 streampark-console 部署任务和管理任务"
+ "description": "使用 StreamPark 来部署和管理您的作业"
}
],
"honor" : {
@@ -80,8 +80,8 @@
"architecture": "System Architecture",
"description": "Description",
"learnMore": "Learn More",
- "coreFeatures": "Core Features",
- "coreFeaturesDesc": "Modern features that will make your project
easier.",
+ "coreFeatures": "Key Features",
+ "coreFeaturesDesc": "The key features to make your project easier.",
"development": "Development Framework",
"honor": "Our Honor",
"ourUsers": "Our Users",
@@ -133,17 +133,17 @@
{
"icon": "lni-code",
"title": "Write",
- "description": "Quickly developing app using streampark-core Api"
+ "description": "Develop your code quickly using the StreamPark API"
},
{
"icon": "lni-bug",
"title": "Debug",
- "description": "Start the app with config and quickly debug the code"
+ "description": "Debug your code with the standardized configuration"
},
{
"icon": "lni-bolt-alt",
"title": "Deploy",
- "description": "Use streampark-console to deploy app"
+ "description": "Deploy and manage your jobs using StreamPark"
}
],
"honor" : {
diff --git a/src/pages/team/index.jsx b/src/pages/team/index.jsx
index aa66c07b..12af912c 100644
--- a/src/pages/team/index.jsx
+++ b/src/pages/team/index.jsx
@@ -12,7 +12,7 @@ export default function () {
const isBrowser = useIsBrowser();
const language = isBrowser && location.pathname.indexOf('/zh-CN/') === 0 ?
'zh-CN' : 'en';
const dataSource = config?.[language];
-
+
function getGitName(url) {
return '@' + url.replace('https://github.com/', '');
}