Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add an incubation note #16

Merged
merged 2 commits into from
Oct 21, 2024
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
9 changes: 9 additions & 0 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
},
],
},
{
Expand Down
28 changes: 28 additions & 0 deletions website/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,33 @@ function HomepageHeader() {
);
}

function EclipseIncubation() {
return (
<section className={clsx('hero', styles.heroBanner)}>
<div className='container'>
<div className={styles.incubation}>
<img
src='https://projects.eclipse.org/modules/custom/eclipsefdn/eclipsefdn_projects/images/project_state/incubating.png'
alt='Incubation'
className={styles.incubationImage}
/>
<p className='hero__subtitle'>
The{' '}
<a href='https://projects.eclipse.org/projects/technology.apoapsis'>
Eclipse Apoapsis
</a>{' '}
project is currently in the{' '}
<a href='https://www.eclipse.org/projects/handbook/#incubation'>
incubation
</a>{' '}
phase.
</p>
</div>
</div>
</section>
);
}

export default function Home() {
const {siteConfig} = useDocusaurusContext();
return (
Expand All @@ -44,6 +71,7 @@ export default function Home() {
<HomepageHeader />
<main>
<HomepageFeatures />
<EclipseIncubation />
</main>
</Layout>
);
Expand Down
12 changes: 12 additions & 0 deletions website/src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}