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

Updated style for the turndown message #804

Merged
merged 1 commit into from
Nov 8, 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
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Service Weaver [![Go Reference](https://pkg.go.dev/badge/github.com/ServiceWeaver/weaver.svg)](https://pkg.go.dev/github.com/ServiceWeaver/weaver)

## 🚨 Important Announcement

> **Service Weaver** began as an exploratory initiative to understand the challenges of developing, deploying, and maintaining distributed applications. We were excited by the strong interest from the developer community, which led us to open-source the project.
>
> We greatly appreciate the continued advocacy and support of the Service Weaver community. However, we realized that it was hard for users to adopt Service Weaver directly since it required rewriting large parts of existing applications. Therefore, Service Weaver did not see much direct use, and **effective December 5, 2024**, we will transition Service Weaver into maintenance mode. After this date, for the next 6 months, we will only push critical commits to the GitHub repository, respond to critical issues, merge critical pull requests, and patch new releases. We recommend that users fork the repository and report any issues preventing them from maintaining a stable version of the code.
>
> **On June 6, 2025**, we plan to permanently freeze and archive the GitHub repository, after which no new commits or releases will be made.

Service Weaver is a programming framework for writing, deploying, and managing
distributed applications. You can run, test, and debug a Service Weaver
application locally on your machine, and then deploy it to the
Expand Down
18 changes: 18 additions & 0 deletions website/assets/css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,24 @@
margin-right: auto;
}

.announcement-banner {
background-color: #f8d7da; /* Light red background */
color: #721c24; /* Dark red text */
padding: 15px;
text-align: center;
font-size: 20px;
position: fixed;
height: auto;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
}

.announcement-banner p {
margin: 0;
}

.intro-row {
display: flex;
flex-wrap: wrap;
Expand Down
7 changes: 7 additions & 0 deletions website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@
limitations under the License.
-->

<div class="announcement-banner">
<p>We regret to announce that, effective <b>December 5, 2024</b>, we will no longer continue active
development on the Service Weaver open-source framework. For more details, click
<a href="https://github.com/ServiceWeaver/weaver/blob/main/README.md">here.</a>
</p>
</div>

<div id="serviceweaver-jumbotron">
<h1>
Write your application as a <strong>modular binary</strong>. Deploy it
Expand Down
Loading