Skip to content

Commit fafcc8d

Browse files
authored
Merge pull request #4353 from alephdata/update-docs
add sunsetting info to docs
2 parents 79667b3 + 474a288 commit fafcc8d

2 files changed

Lines changed: 68 additions & 0 deletions

File tree

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
2+
---
3+
import { Wrapper } from 'astro-theme-docs/components';
4+
---
5+
6+
<style>
7+
.HomeAbout {
8+
display: grid;
9+
gap: var(--space-xl);
10+
}
11+
12+
p {
13+
margin-block-end: var(--space-sm);
14+
}
15+
16+
em {
17+
background-color: var(--color-bg-highlight);
18+
font-style: normal;
19+
font-weight: 500;
20+
color: var(--color-fg-emphasis);
21+
padding: 0.1em 0.2em;
22+
border-radius: var(--radius);
23+
}
24+
25+
@media screen and (min-width: 840px) {
26+
.HomeAbout {
27+
grid-template-columns: 1fr 1fr;
28+
}
29+
}
30+
31+
.Listing > :global(li) {
32+
cursor: default;
33+
font-weight: 500;
34+
}
35+
36+
.Listing > :global(li + li) {
37+
margin-block-start: var(--space-xs);
38+
}
39+
40+
</style>
41+
42+
<section class="HomeSunset">
43+
<h2 class="beta" style="text-align:center;">⚠️ Project status: SUNSETTING ⚠️ </h2>
44+
<br/>
45+
Our involvement with this open-source project is being sunsetted. Maintenance of this version will officially end after December 2025. <u>This documentation website will remain available for the foreseeable future</u>.
46+
<br/>
47+
<br/>
48+
<h3>Why?</h3>
49+
This decision marks a significant strategic shift for us. Over the past year, our team has completely rewritten the Aleph codebase from scratch to launch Aleph Pro. As we transition to this new supported platform, we are focusing our resources entirely on Aleph Pro to ensure we can keep the lights on for investigations around the world.
50+
<br/>
51+
<br/>
52+
For further details on this decision and what it means for the future, please read our <a href="https://www.occrp.org/en/announcement/aleph-pro-frequently-asked-questions-on-the-future-of-occrps-investigative-data-platform/">official FAQs</a>.
53+
<br/>
54+
<br/>
55+
<h3>Timeline & Support</h3>
56+
<ul class="Listing">
57+
<li>We will continue to provide maintenance for this repository until December 31st, 2025. After this date, no further updates, bug fixes, or support will be provided by the core team.
58+
<li>For any questions regarding the transition or the legacy software, please reach out via our <a href="https://aleph.discourse.group/">Discourse community</a>.
59+
<li>For those currently hosting their own Aleph instances, we will be in touch with you very soon regarding the transition.
60+
<li>Organizations and individuals looking to collaborate can reach out to <a href="mailto:aleph-pro@occrp.org">aleph-pro@occrp.org</a>.
61+
</ul>
62+
63+
<br/>
64+
<b>Thank you!</b> We are incredibly proud of what we’ve built so far. Thank you to all the contributors and community members who helped build this project and believed in our mission.
65+
</p>
66+
</section>

docs/src/pages/index.astro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import HomeTeasers from '@components/HomeTeasers.astro';
1010
import HomeAbout from '@components/HomeAbout.astro';
1111
import HomeFeatures from '@components/HomeFeatures.astro';
1212
import HomeContact from '@components/HomeContact.astro';
13+
import HomeSunset from '@components/HomeSunset.astro';
1314
---
1415

1516
<style>
@@ -49,6 +50,7 @@ import HomeContact from '@components/HomeContact.astro';
4950
<h1 class="alpha Home__heading">
5051
Welcome to the Aleph User Guide and Technical Documentation
5152
</h1>
53+
<HomeSunset />
5254
<HomeTeasers />
5355
<HomeAbout />
5456
<HomeFeatures />

0 commit comments

Comments
 (0)