Merge pull request #6865 from roc-lang/plans-banner

Add plans banner to `/install` page
This commit is contained in:
Luke Boswell 2024-07-04 11:05:59 +10:00 committed by GitHub
commit 28420e90ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 19 additions and 0 deletions

View File

@ -2,6 +2,10 @@
Roc is a very young language with many incomplete features and known bugs. It doesn't even have a numbered release yet, but it does have [nightly builds](https://github.com/roc-lang/roc/releases) that you can download if you'd like to try it out without [building from source](https://github.com/roc-lang/roc/blob/main/BUILDING_FROM_SOURCE.md)!
<div class="banner">
Roc is a <b>Work in Progress!</b> See the <a href="/plans">plans</a> page for more information.
</div>
There are currently a few known OS-specific issues:
* **macOS:** There are no known compatibility issues, but the compiler doesn't run as fast as it does on Linux or Windows, because we don't (yet) do our own linking like we do on those targets. (Linking works similarly on Linux and Windows, but the way macOS does it is both different and significantly more complicated.)
* **Windows:** There are some known Windows-specific compiler bugs, and probably some other unknown ones because more people have tried out Roc on Mac and Linux than on Windows.

View File

@ -1580,3 +1580,18 @@ code .dim {
color: var(--light-cyan);
content: "» ";
}
.banner {
background-color: var(--gray-bg);
padding: 1rem;
text-align: center;
font-family: var(--font-sans);
border: 1px solid var(--primary-1);
margin-bottom: 20px;
}
.banner a {
color: var(--link-color);
text-decoration: underline;
font-weight: bold;
}