diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 979efca..9921342 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -86,6 +86,11 @@ const config = { position: 'left', label: 'Guidance', }, + { + href: 'https://eclipse-apoapsis.github.io/ort-server', + label: 'ORT Server', + position: 'right', + }, { href: 'https://github.com/eclipse-apoapsis', label: 'GitHub', @@ -112,6 +117,10 @@ const config = { label: 'Matrix Chat', href: 'https://matrix.to/#/#apoapsis:matrix.eclipse.org', }, + { + label: 'ORT Server', + href: 'https://eclipse-apoapsis.github.io/ort-server', + }, ], }, { diff --git a/website/src/pages/index.js b/website/src/pages/index.js index 521bd1d..5e4e90e 100644 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -35,6 +35,33 @@ function HomepageHeader() { ); } +function EclipseIncubation() { + return ( +
+
+
+ Incubation +

+ The{' '} + + Eclipse Apoapsis + {' '} + project is currently in the{' '} + + incubation + {' '} + phase. +

+
+
+
+ ); +} + export default function Home() { const {siteConfig} = useDocusaurusContext(); return ( @@ -44,6 +71,7 @@ export default function Home() {
+
); diff --git a/website/src/pages/index.module.css b/website/src/pages/index.module.css index 79faea0..76080f8 100644 --- a/website/src/pages/index.module.css +++ b/website/src/pages/index.module.css @@ -27,3 +27,15 @@ align-items: center; justify-content: center; } + +.incubation { + display: flex; + align-items: center; + justify-content: center; +} + +.incubationImage { + margin-right: 20px; + width: 100px; + height: auto; +}