mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-06 08:07:42 +00:00
Edit pass text cleanup + fix mismatched max-w
This commit is contained in:
parent
dc2c235211
commit
1c7727b815
3 changed files with 17 additions and 17 deletions
|
@ -3,9 +3,9 @@
|
|||
<div class="max-w-screen-lg p-5 mx-auto font-extralight text-main lg:p-20">
|
||||
<h1 class="mb-10 font-display font-extralight">We’re building a community of passionate developers & advocates.</h1>
|
||||
|
||||
<p class="mt-5 leading-relaxed">If you would like to get involved early, sign up for the our community below and we will let you know when it opens.</p>
|
||||
<p class="mt-5 leading-relaxed">If you would like to get involved early, sign up below and we will let you know when our developer community opens!</p>
|
||||
|
||||
<form action="/signups" method="post" class="mt-10">
|
||||
<form action="/signups" method="post" class="max-w-screen-md mt-10">
|
||||
<ul>
|
||||
<li class="flex flex-row mt-5 text-lg">
|
||||
<span class="relative w-6 mt-2 mr-5 checkbox__input">
|
||||
|
@ -27,7 +27,7 @@
|
|||
<label for="wants_releases">
|
||||
<span class="radio__label">Let me know when there is a beta release I can try.</span>
|
||||
</label>
|
||||
<p class="text-sm leading-6 text-gray-400">
|
||||
<p class="text-sm leading-6 text-gray-300">
|
||||
We'll put you on the list to play with an early beta and let you know when Zed launches.
|
||||
</p>
|
||||
</div>
|
||||
|
@ -53,7 +53,7 @@
|
|||
<label for="wants_updates">
|
||||
<span class="radio__label">I’m interested in following Zed's development</span>
|
||||
</label>
|
||||
<p class="text-sm leading-6 text-gray-400">
|
||||
<p class="text-sm leading-6 text-gray-300">
|
||||
We'll send you occasional updates about our progress and share what we're learning along the way.
|
||||
</p>
|
||||
</div>
|
||||
|
@ -80,8 +80,8 @@
|
|||
<label for="wants_community">
|
||||
<span class="radio__label">I want to test early releases & join the Zed community</span>
|
||||
</label>
|
||||
<p class="text-sm leading-6 text-gray-400">
|
||||
We'll add you to the wait list to receive early builds and ask you to help us by testing them out.
|
||||
<p class="text-sm leading-6 text-gray-300">
|
||||
We'll add you to the waitlist to receive early builds and ask you to help us by testing them out.
|
||||
</p>
|
||||
</div>
|
||||
</li>
|
||||
|
@ -92,14 +92,14 @@
|
|||
<input class="block w-full p-5 mt-5 bg-transparent border border-white font-extralight lg:mt-0" type="text" id="form-gh" name="github_login" placeholder="Github Username">
|
||||
</div>
|
||||
|
||||
<textarea class="block w-full h-40 p-5 mt-5 leading-relaxed bg-transparent border border-white font-extralight" type="text" name="about" placeholder="Tell us a bit about yourself and your interest Zed. What does your dream code-editing experience look like? What is the one thing that you love or hate about your current editor?"></textarea>
|
||||
<textarea class="block w-full h-40 p-5 mt-5 leading-relaxed bg-transparent border border-white font-extralight" type="text" name="about" placeholder="Tell us a bit about yourself and your interest in Zed. What does your dream code-editing experience look like? What do you love or hate about your current editor?"></textarea>
|
||||
|
||||
<button class="block mt-10 text-lg opacity-100 font-extralight hover:opacity-80">
|
||||
Join the waitlist →
|
||||
</button>
|
||||
|
||||
<p class="mt-10 text-sm leading-relaxed text-gray-500">
|
||||
We're not gonna spam you — You can expect an email every 1 to 3 months from us if you sign up for updates and occasional emails about beta releases.
|
||||
We're not gonna spam you—You can expect an email every 1 to 3 months from us if you sign up for updates, and occasional emails about beta releases.
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{{#> layout }}
|
||||
|
||||
<div class="max-w-screen-lg p-5 mx-auto text-gray-200 font-extralight text-main lg:p-20">
|
||||
<article class="max-w-xl">
|
||||
<article class="">
|
||||
<h1 class="mb-10 text-4xl leading-tight text-white font-display font-extralight">Introducing Zed—A lightning-fast, collaborative code editor written in Rust.</h1>
|
||||
<p class="mt-5 leading-relaxed">
|
||||
We think there’s a better way to write code, and it starts with the following assumptions:
|
||||
|
@ -10,7 +10,7 @@
|
|||
<h3 class="mt-10 leading-tight text-white font-display font-extralight">Mission-critical tools should be hyper-responsive.</h3>
|
||||
|
||||
<p class="mt-3 leading-relaxed">
|
||||
When you move the cursor or type a character, you should see pixels on the next refresh of your display–every time. Even sub-perceptual pauses add up over the course of a day to create unnecessary stress.
|
||||
When you move the cursor or type a character, you should see pixels on the next refresh of your display—every time. Even sub-perceptual pauses add up over the course of a day to create unnecessary stress.
|
||||
</p>
|
||||
|
||||
<p class="mt-5 leading-relaxed">
|
||||
|
@ -52,21 +52,21 @@
|
|||
<h2 class="mt-16 mb-5 leading-tight text-white font-display font-extralight">Under the hood</h2>
|
||||
|
||||
<article class="leading-relaxed">
|
||||
<h3 class="mt-10 leading-tight text-white font-display font-extralight">Rust</h3>
|
||||
<h3 class="mt-10 leading-tight text-white font-display font-extralight">Building in Rust</h3>
|
||||
<p class="mt-3">Rust offers expressivity and developer productivity rivaling languages that depend on a VM, while simultaneously offering the control required to fully utilize the underlying hardware.</p>
|
||||
|
||||
<p class="mt-5">Rust’s unique ownership model is a challenge at the beginning, but once you internalize it, you can write extremely efficient multi-core code without fear of invoking undefined behavior.</p>
|
||||
|
||||
<p class="mt-5">It also makes it straightforward to call directly into the C-based APIs of the operating system. Rust makes it possible for a small team to build a complex product quickly, and Zed wouldn’t have been possible without it.</p>
|
||||
|
||||
<p class="mt-5">In the past to write software with this performant you would need to use C++. Rust, for the first time, enables us to write software at that level as a very small team.</p>
|
||||
<p class="mt-5">In the past, to write software with this performant you would need to use C++. Rust, for the first time, enables us to write software at that level as a very small team.</p>
|
||||
</article>
|
||||
|
||||
<article class="leading-relaxed">
|
||||
<h3 class="mt-10 mb-4 leading-tight text-white font-display font-extralight">GPUI</h3>
|
||||
<p class="mt-3">We originally planned to use Electron as a convenient means of delivering a cross-platform GUI for Zed while building the core of the application in Rust. But at every turn, we found that web technology was the bottleneck in achieving amazing performance.</p>
|
||||
<h3 class="mt-10 mb-4 leading-tight text-white font-display font-extralight">A new GPU-powered UI framework</h3>
|
||||
<p class="mt-3">We originally planned to use Electron as a convenient means of delivering a cross-platform GUI for Zed, while building the core of the application in Rust. But at every turn, we found that web technology was the bottleneck in achieving amazing performance. Finally, we decided to take full control and simply build a GPU-powered UI framework that met our needs.</p>
|
||||
|
||||
<p class="mt-5">Finally, we decided to take full control and simply build a GPU-powered UI framework that met our needs. We call it GPUI.</p>
|
||||
<p class="mt-5"></p>We call it GPUI.</p>
|
||||
|
||||
<p class="mt-5">We took a lot of inspiration from Mozilla’s Webrender project. The key insight was that modern graphics hardware can render complex 3D graphics at high frame rates, so why not use it to render relatively simple 2D user interfaces with an immediate mode architecture? </p>
|
||||
|
||||
|
@ -97,7 +97,7 @@
|
|||
|
||||
<p class="mt-10 mb-10 leading-relaxed">———</p>
|
||||
|
||||
<p class="mt-5 leading-relaxed">Excited about what we are doing? <a class="underline hover:no-underline" href="/community">Sign up for updates</a> to follow along in our development process.</p>
|
||||
<p class="mt-5 leading-relaxed">Excited about what we are building? <a class="underline hover:no-underline" href="/community">Sign up for updates</a> to follow along in our development process.</p>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<div class="max-w-screen-lg p-5 mx-auto font-extralight text-main lg:p-20">
|
||||
<h1 class="mb-10 text-4xl text-white font-display font-extralight">
|
||||
We think there’s a better way to write code–and we've been working for more than a decade to bring it into existence.
|
||||
We think there’s a better way to write code—and we've been working for more than a decade to bring it into existence.
|
||||
</h1>
|
||||
<p class="mt-5 leading-relaxed">
|
||||
Our first attempt was Atom, which we loved like a child but which ultimately fell short of our original vision. When we created Electron in 2012 to serve as Atom's runtime, there weren't a lot of great options for building cross-platform desktop apps.
|
||||
|
|
Loading…
Reference in a new issue