diff --git a/server/src/main.rs b/server/src/main.rs index 72712eec88..ee1869707c 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -10,7 +10,6 @@ mod home; mod rpc; mod team; mod story; -mod tech; mod updates; mod releases; mod community; @@ -182,7 +181,6 @@ pub async fn run_server( releases::add_routes(&mut web); updates::add_routes(&mut web); community::add_routes(&mut web); - tech::add_routes(&mut web); admin::add_routes(&mut web); auth::add_routes(&mut web); assets::add_routes(&mut web); diff --git a/server/src/tech.rs b/server/src/tech.rs deleted file mode 100644 index e42bf257e0..0000000000 --- a/server/src/tech.rs +++ /dev/null @@ -1,15 +0,0 @@ -use crate::{AppState, Request, RequestExt}; -use std::sync::Arc; -use tide::http::mime; - -pub fn add_routes(tech: &mut tide::Server>) { - tech.at("/tech").get(get_tech); -} - -async fn get_tech(mut request: Request) -> tide::Result { - let data = request.layout_data().await?; - Ok(tide::Response::builder(200) - .body(request.state().render_template("tech.hbs", &data)?) - .content_type(mime::HTML) - .build()) -} diff --git a/server/templates/community.hbs b/server/templates/community.hbs index c5edc36bbb..f2a5bc54bd 100644 --- a/server/templates/community.hbs +++ b/server/templates/community.hbs @@ -1,7 +1,37 @@ {{#> layout }} -
-

Community

+
+

We’re building a community of passionate developers & advocates.

+

Be the first to join a community of builders that want to make the future.

+
+
    +
  • + +
    + +

    Get updates on beta releases, and when Zed launches.

    +
    +
  • +
  • + +
    + +

    Receive occasional email updates on the development of Zed and it's tech

    +
    +
  • +
  • + +
    + +

    Join the waitlist for our alpha tester community to get early access to releases and contribute to Zed's development through testing & feedback.

    +
    +
  • +
+ + +
+ +

We'll never spam your email — You can expect an email every 1 to 3 months from us if you sign up for updates, and occasional emails about public testing releases.

{{/layout}} diff --git a/server/templates/tech.hbs b/server/templates/tech.hbs deleted file mode 100644 index 73e59ff425..0000000000 --- a/server/templates/tech.hbs +++ /dev/null @@ -1,17 +0,0 @@ -{{#> layout }} - -
-

The Tech ~remove me~

- -

Rust – wip

-

wip

- -

GPUI – Laying the foundation for a generation of apps.

-

A GPU rendering library for rust apps, gpui is a brand new platform for creating lightning fast native apps that take full advantage of your local hardware.

-

We’re building gpui and Zed in parallel, and expect to open gpui up for usage outside of it in the future.

- -

CRDT – The key to time travel.

-

One of the foundational elements of Zed is the ability...

-
- -{{/layout}}