2023-09-28 16:42:56 +02:00
{% extends "zerver/base.html" %}
{% set entrypoint = "landing-page-hello" %}
2017-04-20 20:44:49 +02:00
2023-09-28 16:42:56 +02:00
{% set PAGE_TITLE = "Zulip — organized team chat" %}
2022-09-05 17:24:21 +02:00
2024-07-07 22:51:07 +02:00
{% set PAGE_DESCRIPTION = "Zulip is an organized team chat app for distributed
teams of all sizes." %}
2022-09-05 17:24:21 +02:00
2017-04-20 20:44:49 +02:00
{% block customhead %}
2021-04-21 00:46:14 +02:00
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" / >
2015-09-24 01:35:21 +02:00
{% endblock %}
2023-09-28 16:42:56 +02:00
{% block content %}
{% include 'zerver/landing_nav.html' %}
< div class = "portico-hello-page" >
< div class = 'body-bg' >
< div class = 'body-bg__layer' > < / div >
2017-04-20 20:44:49 +02:00
< / div >
2023-09-28 16:42:56 +02:00
< div class = "screen-1" >
< h1 > Organized team chat< / h1 >
2024-07-07 22:51:07 +02:00
< div class = 'h1-subheader' >
For distributed teams of all sizes.
< / div >
2023-09-28 16:42:56 +02:00
< div class = 'appshot-1' >
< picture >
<!-- dark theme is only with webp images, since webp support was at the same time or earlier than prefers - color - scheme https://caniuse.com/?search=prefers - color - scheme https://caniuse.com/webp -->
< source class = 'appshot-1__img'
type="image/webp"
srcset="{{ static('images/landing-page/hello/generated/screen-1-dark-1x.webp') }},
2024-05-23 10:59:10 +02:00
{{ static('images/landing-page/hello/generated/screen-1-dark-2x.webp') }} 2x"
2023-09-28 16:42:56 +02:00
media="(min-width: 941px) and (prefers-color-scheme: dark)"/>
< source class = 'appshot-1__img'
type="image/webp"
srcset="{{ static('images/landing-page/hello/generated/screen-1-mobile-dark-1x.webp') }},
2024-05-23 10:59:10 +02:00
{{ static('images/landing-page/hello/generated/screen-1-mobile-dark-2x.webp') }} 2x"
2023-09-28 16:42:56 +02:00
media="(max-width: 940px) and (prefers-color-scheme: dark)"/>
2024-05-23 10:59:10 +02:00
< source width = "1095" height = "496" class = 'appshot-1__img'
2023-09-28 16:42:56 +02:00
type="image/webp"
srcset="{{ static('images/landing-page/hello/generated/screen-1-1x.webp') }},
2024-05-23 10:59:10 +02:00
{{ static('images/landing-page/hello/generated/screen-1-2x.webp') }} 2x"
2023-09-28 16:42:56 +02:00
media="(min-width: 941px)"/>
< source class = 'appshot-1__img'
type="image/webp"
srcset="{{ static('images/landing-page/hello/generated/screen-1-mobile-1x.webp') }},
2024-05-23 10:59:10 +02:00
{{ static('images/landing-page/hello/generated/screen-1-mobile-2x.webp') }} 2x"
2023-09-28 16:42:56 +02:00
media="(max-width: 940px)"/>
< source class = 'appshot-1__img'
srcset="{{ static('images/landing-page/hello/generated/screen-1-mobile-1x.jpg') }},
2024-05-23 10:59:10 +02:00
{{ static('images/landing-page/hello/generated/screen-1-mobile-2x.jpg') }} 2x"
2023-09-28 16:42:56 +02:00
media="(max-width: 940px)"/>
2024-05-23 10:59:10 +02:00
< img alt = "" width = "1095" height = "496" class = 'appshot-1__img' src = "{{ static('images/landing-page/hello/generated/screen-1-1x.jpg') }}"
2023-09-28 16:42:56 +02:00
srcset="{{ static('images/landing-page/hello/generated/screen-1-1x.jpg') }},
2024-05-23 10:59:10 +02:00
{{ static('images/landing-page/hello/generated/screen-1-2x.jpg') }} 2x"/>
2023-09-28 16:42:56 +02:00
< / picture >
< div class = "cta-buttons" >
< a href = "/try-zulip/" >
See it in use
2024-05-23 10:59:10 +02:00
< div class = "cta-desc" > in an open organization< / div >
2017-04-20 20:44:49 +02:00
< / a >
2023-09-28 16:42:56 +02:00
< a href = "/new/" >
Create organization
2024-05-23 10:59:10 +02:00
< div class = "cta-desc" > in 1 minute for free< / div >
2017-04-20 20:44:49 +02:00
< / a >
2024-04-25 23:02:24 +02:00
< a href = "/request-demo/" >
Get a demo
2024-05-23 10:59:10 +02:00
< div class = "cta-desc" > request a call< / div >
2024-04-25 23:02:24 +02:00
< / a >
2017-04-20 20:44:49 +02:00
< / div >
< / div >
2023-09-28 16:42:56 +02:00
< div class = "client-logos" >
2024-07-29 11:31:10 +02:00
< div class = 'client-logos-div client-logos__logo_akamai' > < / div >
< div class = 'client-logos-div client-logos__logo_tum' > < / div >
< div class = 'client-logos-div client-logos__logo_wikimedia' > < / div >
< div class = 'client-logos-div client-logos__logo_rust' > < / div >
< div class = 'client-logos-div client-logos__logo_dr_on_demand' > < / div >
< div class = 'client-logos-div client-logos__logo_maria' > < / div >
2023-09-28 16:42:56 +02:00
< / div >
2017-04-20 20:44:49 +02:00
< / div >
2023-09-28 16:42:56 +02:00
< div class = "screen-2" >
< div class = "screen-2__container" >
< div class = "screen-2__content" >
2024-04-12 22:12:08 +02:00
< h2 class = "screen-2__header" > What makes Zulip different< / h2 >
2024-05-23 10:59:10 +02:00
< div class = "screen-2__desc" >
2024-04-12 22:12:08 +02:00
< p >
People often tell us that traditional team chat tools (Slack, Microsoft Teams, etc.) feel chaotic and stressful.
< / p >
< p >
2024-05-23 10:59:10 +02:00
Zulip is designed around conversations that are labeled with topics, to make communication < a href = "/why-zulip/" > organized and efficient< / a > . It’ s easy to get an overview of what conversations are happening, and to read one conversation at a time.
2024-04-12 22:12:08 +02:00
< / p >
2023-09-28 16:42:56 +02:00
< / div >
2024-05-23 10:59:10 +02:00
< a class = "quote" href = "/case-studies/idrift/" >
2023-09-28 16:42:56 +02:00
< div class = "quote__text" >
2024-05-23 10:59:10 +02:00
Zulip’ s < strong > threading model< / strong > makes it so much easier to < strong > manage my team< / strong > … As a leader, < strong > in just a few minutes< / strong > I can get an overview over what’ s going on and see where my attention is needed.
2023-09-28 16:42:56 +02:00
< / div >
< div class = "quote__source" >
2024-05-23 10:59:10 +02:00
Case study with < strong > Gaute Lund< / strong > , < i > co-founder of iDrift AS< / i >
2017-04-20 20:44:49 +02:00
< / div >
2024-05-23 10:59:10 +02:00
< / a >
2017-04-20 20:44:49 +02:00
< / div >
2023-09-28 16:42:56 +02:00
< div class = "appshot-2" >
< picture >
<!-- dark theme is only with webp images, since webp support was at the same time or earlier than prefers - color - scheme https://caniuse.com/?search=prefers - color - scheme https://caniuse.com/webp -->
2024-05-23 10:59:10 +02:00
<!-- we only have mobile images here -->
2023-09-28 16:42:56 +02:00
< source class = 'appshot-2__img'
type="image/webp"
srcset="{{ static('images/landing-page/hello/generated/screen-2-mobile-dark-1x.webp') }},
2024-05-23 10:59:10 +02:00
{{ static('images/landing-page/hello/generated/screen-2-mobile-dark-2x.webp') }} 2x"
media="(prefers-color-scheme: dark)"/>
2023-09-28 16:42:56 +02:00
< source class = 'appshot-2__img'
type="image/webp"
srcset="{{ static('images/landing-page/hello/generated/screen-2-mobile-1x.webp') }},
2024-05-23 10:59:10 +02:00
{{ static('images/landing-page/hello/generated/screen-2-mobile-2x.webp') }} 2x"/>
2023-09-28 16:42:56 +02:00
< img alt = "" class = 'appshot-2__img'
2024-05-23 10:59:10 +02:00
src="{{ static('images/landing-page/hello/generated/screen-2-mobile-1x.jpg') }}"
srcset="{{ static('images/landing-page/hello/generated/screen-2-mobile-1x.jpg') }},
{{ static('images/landing-page/hello/generated/screen-2-mobile-2x.jpg') }} 2x"/>
2023-09-28 16:42:56 +02:00
< / picture >
< / div >
2017-04-20 20:44:49 +02:00
< / div >
2023-09-28 16:42:56 +02:00
< / div >
< div class = "screen-3" >
< div class = "screen-3__container" >
< div class = "screen-3__content" >
2024-07-07 22:57:57 +02:00
< h2 class = "screen-3__header" > Zulip empowers remote and flexible work.< / h2 >
2024-05-23 10:59:10 +02:00
< div class = "screen-3__subtitle" > Check out these case studies to see the impact.< / div >
< div class = 'screen-3__quotes' >
2024-07-07 22:57:57 +02:00
< a class = "quote" href = "/case-studies/atolio/" >
2024-05-23 10:59:10 +02:00
< div class = "quote__text" >
2024-07-07 22:57:57 +02:00
< h4 > Work better together< / h4 >
The first-class threads in Zulip are < strong > absolutely critical to how we work< / strong > . So many people on Hacker News talk about using Zulip — I'm so glad we joined them!
2024-05-23 10:59:10 +02:00
< / div >
< div class = "quote__source" >
2024-07-07 22:57:57 +02:00
< strong > David Lanstein< / strong > , < i > co-founder and CEO of Atolio< / i >
2024-05-23 10:59:10 +02:00
< / div >
< / a >
2024-07-07 22:57:57 +02:00
< a class = "quote" href = "/case-studies/idrift/" >
2024-05-23 10:59:10 +02:00
< div class = "quote__text" >
2024-07-07 22:57:57 +02:00
< h4 > Empower leaders< / h4 >
Using Zulip significantly < strong > increases the size of the team< / strong > for which a manager can meaningfully know what’ s going on.
2024-05-23 10:59:10 +02:00
< / div >
< div class = "quote__source" >
2024-07-07 22:57:57 +02:00
< strong > Gaute Lund< / strong > , < i > co-founder of iDrift AS< / i >
2024-05-23 10:59:10 +02:00
< / div >
< / a >
2024-07-07 22:57:57 +02:00
< a class = "quote" href = "/case-studies/rust/" >
2024-05-23 10:59:10 +02:00
< div class = "quote__text" >
2024-07-07 22:57:57 +02:00
< h4 > Make decisions faster< / h4 >
Some decisions that were blocked for months on
GitHub were < strong > resolved within 24 hours< / strong > on Zulip.
2024-05-23 10:59:10 +02:00
< / div >
< div class = "quote__source" >
2024-07-07 22:57:57 +02:00
< strong > Josh Triplett< / strong > , < i > Rust Language team co-lead< / i >
2024-05-23 10:59:10 +02:00
< / div >
< / a >
2024-07-07 22:57:57 +02:00
< a class = "quote" href = "https://monadical.com/posts/how-to-make-remote-work-part-two-zulip.html" >
2024-05-23 10:59:10 +02:00
< div class = "quote__text" >
2024-07-07 22:57:57 +02:00
< h4 > Simplify knowledge management< / h4 >
Using Zulip in a way that feels natural creates
an < strong > organized repository< / strong > of knowledge < i > as a
side effect< / i > .
2024-05-23 10:59:10 +02:00
< / div >
< div class = "quote__source" >
2024-07-07 22:57:57 +02:00
< strong > Max McCrea< / strong > , < i > Co-founder of Monadical< / i >
2024-05-23 10:59:10 +02:00
< / div >
< / a >
2024-07-07 22:57:57 +02:00
< a class = "quote" href = "/case-studies/end-point/" >
2024-05-23 10:59:10 +02:00
< div class = "quote__text" >
2024-07-07 22:57:57 +02:00
< h4 > Organize 100s of workstreams< / h4 >
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 < strong > access all the information you need< / strong > .
2024-05-23 10:59:10 +02:00
< / div >
< div class = "quote__source" >
2024-07-07 22:57:57 +02:00
< strong > Jon Jensen< / strong > , < i > CTO of End Point
Dev< / i >
2024-05-23 10:59:10 +02:00
< / div >
< / a >
< a class = "quote" href = "/case-studies/gut-contact/" >
< div class = "quote__text" >
2024-07-07 22:57:57 +02:00
< h4 > Communicate with efficiency< / h4 >
I don’ t like going back to Slack now. It’ s just
not as efficient a way to < strong > organize
communication< / strong > .
2024-05-23 10:59:10 +02:00
< / div >
< div class = "quote__source" >
2024-07-07 22:57:57 +02:00
< strong > James van Lommel< / strong > , < i > Director of Engineering at Semsee< / i >
2024-05-23 10:59:10 +02:00
< / div >
< / a >
2017-04-20 20:44:49 +02:00
< / div >
< / div >
< / div >
< / div >
2023-09-28 16:42:56 +02:00
< div class = "screen-4" >
< div class = "screen-4__container" >
< div class = "screen-4__content" >
2024-05-23 10:59:10 +02:00
< img alt = "" class = 'switch-diagram' loading = "lazy" width = "400" height = "358"
src="{{ static('images/landing-page/hello/switch-diagram.png') }}"
/>
< div class = "screen-4__desc" >
< h2 class = "screen-4__header" > Switching to Zulip isn’ t hard.< / h2 >
2023-09-28 16:42:56 +02:00
< p >
2024-05-23 10:59:10 +02:00
Zulip offers a convenient cloud solution, with < a href = "/features/" > features< / a > to make your users and IT team happy. Import your data and integrations < a href = "/help/import-from-slack" > from Slack< / a > and other products.
2023-09-28 16:42:56 +02:00
< / p >
2024-05-23 10:59:10 +02:00
< h3 > Your data is yours!< / h3 >
2023-09-28 16:42:56 +02:00
< p >
2024-05-23 10:59:10 +02:00
For ultimate control and < a href = "/help/gdpr-compliance" > compliance< / a > , < a href = "/self-hosting/" > self-host< / a > Zulip’ s 100% < a href = "https://github.com/zulip/zulip#readme" > open-source< / a > software, with easy < a href = "https://zulip.readthedocs.io/en/stable/production/install.html" > installation< / a > and < a href = "https://zulip.readthedocs.io/en/stable/production/upgrade.html" > upgrades< / a > .
2023-09-28 16:42:56 +02:00
< / p >
< / div >
2017-06-06 22:05:17 +02:00
< / div >
2023-09-28 16:42:56 +02:00
< / div >
2024-05-23 10:59:10 +02:00
< div class = "badges" >
< a class = "badge-getapp" href = "https://www.getapp.com/collaboration-software/web-collaboration/category-leaders/" >
< img alt = "" src = "https://capterra.s3.amazonaws.com/assets/images/gdm-badges/ga-category_leaders-2023.png" / >
< / a >
< a class = "badge-capterra" href = "https://www.capterra.com/p/197945/Zulip/" >
< img alt = "" src = "{{ static('images/landing-page/hello/capterra-2023.png') }}" / >
< / a >
< / div >
2018-05-07 20:51:08 +02:00
< / div >
2023-09-28 16:42:56 +02:00
< div class = "screen-5" >
< div class = "screen-5__container" >
2024-05-23 10:59:10 +02:00
< h2 class = "screen-5__header" > Curious to learn more?< / h2 >
< div class = "screen-5__subtitle" > Dive into our detailed guide for organizations like yours.< / div >
< div class = "screen-5__cards" >
< a href = "/for/business/" class = "card" >
< div class = "card__text" >
< h4 class = "right-arrow-icon" > Business< / h4 >
Organizations from small businesses to enterprises communicate more efficiently.
2023-09-28 16:42:56 +02:00
< / div >
2024-05-23 10:59:10 +02:00
< / a >
< a href = "/for/research/" class = "card" >
< div class = "card__text" >
< h4 class = "right-arrow-icon" > Research< / h4 >
For your group, lab, department or scientific field.
2023-09-28 16:42:56 +02:00
< / div >
2024-05-23 10:59:10 +02:00
< / a >
< a href = "/for/education/" class = "card" >
< div class = "card__text" >
< h4 class = "right-arrow-icon" > Education< / h4 >
Communication hub for classes, in-person or online.
2023-09-28 16:42:56 +02:00
< / div >
2024-05-23 10:59:10 +02:00
< / a >
< a href = "/for/open-source/" class = "card" >
< div class = "card__text" >
< h4 class = "right-arrow-icon" > Open-source< / h4 >
Grow and engage your community.
2023-09-28 16:42:56 +02:00
< / div >
2024-05-23 10:59:10 +02:00
< / a >
< a href = "/for/communities/" class = "card" >
< div class = "card__text" >
< h4 class = "right-arrow-icon" > Non-profits, Governments< / h4 >
Free or highly-discounted plans are available for most non-business uses.
2018-05-01 22:54:30 +02:00
< / div >
2023-12-04 03:57:02 +01:00
< / a >
2024-05-23 10:59:10 +02:00
< a href = "/for/events/" class = "card" >
< div class = "card__text" >
< h4 class = "right-arrow-icon" > Events and conferences< / h4 >
For organizers and attendees at your conference, workshop, or hackathon.
< / div >
2023-09-28 16:42:56 +02:00
< / a >
2017-04-20 20:44:49 +02:00
< / div >
< / div >
< / div >
2017-08-30 23:15:06 +02:00
< / div >
2023-09-28 16:42:56 +02:00
{% include 'zerver/footer.html' %}
2013-05-16 21:24:11 +02:00
{% endblock %}