This is an automated email from the ASF dual-hosted git repository. riemer pushed a commit to branch improved-website in repository https://gitbox.apache.org/repos/asf/streampipes-website.git
commit 27d512abea6a89ca5acc0d68c436114ed9cc8bb8 Author: Dominik Riemer <[email protected]> AuthorDate: Wed Jul 12 21:37:39 2023 +0200 Fix some links --- website-v2/docusaurus.config.js | 2 +- website-v2/src/navbar/navbar.js | 2 +- website-v2/src/pages/community/get-involved.tsx | 86 ++++++++++++------------- website-v2/src/{config => team}/team.js | 0 4 files changed, 44 insertions(+), 46 deletions(-) diff --git a/website-v2/docusaurus.config.js b/website-v2/docusaurus.config.js index 45f602f3..cf78397c 100644 --- a/website-v2/docusaurus.config.js +++ b/website-v2/docusaurus.config.js @@ -34,7 +34,7 @@ module.exports = { "customFields": { "disableHeaderTitle": true, "repoUrl": "https://github.com/apache/streampipes", - team: require('./src/config/team.js'), + team: require('./src/team/team.js'), }, "onBrokenLinks": "log", "onBrokenMarkdownLinks": "log", diff --git a/website-v2/src/navbar/navbar.js b/website-v2/src/navbar/navbar.js index 79c3bba8..03ea66b5 100644 --- a/website-v2/src/navbar/navbar.js +++ b/website-v2/src/navbar/navbar.js @@ -13,7 +13,7 @@ module.exports = [ "label": "Apache StreamPipes - User Guide", }, { - "to": "docs/user-guide-introduction", + "to": "docs/python", "label": "Apache StreamPipes - Python", }, { diff --git a/website-v2/src/pages/community/get-involved.tsx b/website-v2/src/pages/community/get-involved.tsx index 27ad63ff..f1e1129e 100644 --- a/website-v2/src/pages/community/get-involved.tsx +++ b/website-v2/src/pages/community/get-involved.tsx @@ -1,8 +1,6 @@ import type { FC } from 'react'; import React from 'react'; import Layout from '@theme/Layout'; -import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; -import { translate } from '@docusaurus/Translate'; import PageHeader from '../../components/PageHeader'; import PageSection from '../../components/PageSection'; @@ -11,49 +9,49 @@ const GetInvolved: FC = () => ( <Layout title={'Get involved'}> <PageHeader title={'Get involved'}></PageHeader> <PageSection backgroundClass={"background-white"} sectionTitle={"Contributing"}> - <div> - <b>We welcome contributors!</b> - <p>There are many ways to help. Become part of a highly motivated community and help growing - StreamPipes:</p> - <ul> - <li><i className="fas fa-check sp-color-green"></i> Submit a bug report on <a - href="https://github.com/apache/streampipes/issues">GitHub</a></li> - <li><i className="fas fa-check sp-color-green"></i> Subscribe to our <a href="/mailinglists.html">mailing - lists</a></li> - <li><i className="fas fa-check sp-color-green"></i> Create a pull request on Github</li> - </ul> - </div> + <div> + <b>We welcome contributors!</b> + <p>There are many ways to help. Become part of a highly motivated community and help growing + StreamPipes:</p> + <ul> + <li><i className="fas fa-check sp-color-green"></i> Submit a bug report on <a + href="https://github.com/apache/streampipes/issues">GitHub</a></li> + <li><i className="fas fa-check sp-color-green"></i> Subscribe to our <a href="/mailinglists.html">mailing + lists</a></li> + <li><i className="fas fa-check sp-color-green"></i> Create a pull request on Github</li> + </ul> + </div> </PageSection> - <PageSection backgroundClass={"background-primary-light"} sectionTitle={"Source Code"}> - <div> - <b>Currently, the following source code repositories are available on Github:</b> - <table className="table" styleClass={"marginTop:30px;"}> - <thead> - <tr> - <th scope="col">Name</th> - <th scope="col">Description</th> - <th scope="col">Link</th> - </tr> - </thead> - <tbody> - <tr> - <td>streampipes</td> - <td>StreamPipes Backend + UI</td> - <td><a href="https://www.github.com/apache/streampipes">Link</a></td> - </tr> - <tr> - <td>streampipes-website</td> - <td>StreamPipes Website + Docs</td> - <td><a href="https://www.github.com/apache/streampipes-website">Link</a></td> - </tr> - <tr> - <td>streampipes-examples</td> - <td>StreamPipes Examples</td> - <td><a href="https://www.github.com/apache/streampipes-examples">Link</a></td> - </tr> - </tbody> - </table> - </div> + <PageSection backgroundClass={"background-primary-light"} sectionTitle={"Source Code"} alignCenter alignContentCenter> + <b>Currently, the following source code repositories are available on Github:</b> + <div> + <table className="table" style={{marginTop: '30px'}}> + <thead> + <tr> + <th scope="col">Name</th> + <th scope="col">Description</th> + <th scope="col">Link</th> + </tr> + </thead> + <tbody> + <tr> + <td>streampipes</td> + <td>StreamPipes Core, Extensions, UI</td> + <td><a href="https://www.github.com/apache/streampipes">Link</a></td> + </tr> + <tr> + <td>streampipes-website</td> + <td>StreamPipes Website + Docs</td> + <td><a href="https://www.github.com/apache/streampipes-website">Link</a></td> + </tr> + <tr> + <td>streampipes-examples</td> + <td>StreamPipes Examples</td> + <td><a href="https://www.github.com/apache/streampipes-examples">Link</a></td> + </tr> + </tbody> + </table> + </div> </PageSection> </Layout> ) diff --git a/website-v2/src/config/team.js b/website-v2/src/team/team.js similarity index 100% rename from website-v2/src/config/team.js rename to website-v2/src/team/team.js
