Fix some links
diff --git a/website-v2/docusaurus.config.js b/website-v2/docusaurus.config.js
index 45f602f..cf78397 100644
--- a/website-v2/docusaurus.config.js
+++ b/website-v2/docusaurus.config.js
@@ -34,7 +34,7 @@
   "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 79c3bba..03ea66b 100644
--- a/website-v2/src/navbar/navbar.js
+++ b/website-v2/src/navbar/navbar.js
@@ -13,7 +13,7 @@
         "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 27ad63f..f1e1129 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 @@
   <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