-
+
Check out these case studies to see the impact.
-
+
-
Less stress
- With Zulip, I can manage hundreds of participants across two communities extremely efficiently, and I don’t feel stressed.
+ Work better together
+ The first-class threads in Zulip are absolutely critical to how we work. So many people on Hacker News talk about using Zulip — I'm so glad we joined them!
- Dan Allen, Asciidoctor open-source project lead
-
-
-
-
-
Faster decisions
- Zulip lets us move faster, connect with each other better, and have interactive technical discussions that are organized, recorded, and welcoming.
-
-
- Josh Triplett, Rust Language team co-lead
+ David Lanstein, co-founder and CEO of Atolio
-
Leaders are informed
+ Empower leaders
Using Zulip significantly increases the size of the team for which a manager can meaningfully know what’s going on.
Gaute Lund, co-founder of iDrift AS
-
+
-
Scalable communication
- Zulip has the best user experience of all the chat apps I’ve tried… It is the only app that makes hundreds of conversations manageable.
+ Make decisions faster
+ Some decisions that were blocked for months on
+ GitHub were resolved within 24 hours on Zulip.
- Tobias Lasser, Technical University of Munich
+ Josh Triplett, Rust Language team co-lead
-
+
-
Uninterrupted focus
- In Zulip, it’s super easy to find things 24 hours later if you weren’t online when a discussion happened.
+ Simplify knowledge management
+ Using Zulip in a way that feels natural creates
+ an organized repository of knowledge as a
+ side effect.
- Gareth Watts, co-founder and CTO of Atolio
+ Max McCrea, Co-founder of Monadical
+
+
+
+
+
Organize 100s of workstreams
+ Other apps like Slack would struggle with
+ organizing the flow of information in a complex
+ organization like ours. Zulip’s UI makes it easy
+ to access all the information you need.
+
+
+ Jon Jensen, CTO of End Point
+ Dev
-
Easy to use software
- The software must be as simple as possible. That’s why we love Zulip.
+ Communicate with efficiency
+ I don’t like going back to Slack now. It’s just
+ not as efficient a way to organize
+ communication.
- Erik Dittert, Head of IT at GUT contact
+ James van Lommel, Director of Engineering at Semsee
diff --git a/zerver/tests/test_docs.py b/zerver/tests/test_docs.py
index 3c074df68d..1843afb436 100644
--- a/zerver/tests/test_docs.py
+++ b/zerver/tests/test_docs.py
@@ -254,7 +254,7 @@ class DocPageTest(ZulipTestCase):
# Test the i18n version of one of these pages.
self._test("/en/history/", ["Zulip released as open source!"])
self._test("/values/", ["designed our company"])
- self._test("/hello/", ["Zulip lets us move faster, connect with each"])
+ self._test("/hello/", ["remote and flexible work"])
self._test("/communities/", ["Open communities directory"])
self._test("/development-community/", ["Zulip development community"])
self._test("/features/", ["Organized team chat solution"])
diff --git a/zerver/tests/test_home.py b/zerver/tests/test_home.py
index d0c5aa3ed3..92d8e72cd8 100644
--- a/zerver/tests/test_home.py
+++ b/zerver/tests/test_home.py
@@ -668,7 +668,7 @@ class HomeTest(ZulipTestCase):
result = self.client_post("/accounts/accept_terms/")
self.assertEqual(result.status_code, 200)
self.assert_in_response("I agree to the", result)
- self.assert_in_response("Zulip lets us move faster, connect with each", result)
+ self.assert_in_response("remote and flexible work", result)
def test_accept_terms_of_service(self) -> None:
self.login("hamlet")
@@ -1231,7 +1231,7 @@ class HomeTest(ZulipTestCase):
with patch("zerver.views.home.get_subdomain", return_value=""):
result = self._get_home_page()
self.assertEqual(result.status_code, 200)
- self.assert_in_response("Zulip lets us move faster, connect with each", result)
+ self.assert_in_response("remote and flexible work", result)
with patch("zerver.views.home.get_subdomain", return_value="subdomain"):
result = self._get_home_page()