From 43990b5b67208ef69ed7cf965c2f0b6bf1e3c7f6 Mon Sep 17 00:00:00 2001 From: sjud <64875465+sjud@users.noreply.github.com> Date: Wed, 17 May 2023 13:07:17 -0400 Subject: [PATCH] docs: include link to book, Discord, examples (#1053) --- leptos/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/leptos/src/lib.rs b/leptos/src/lib.rs index 4ea625a74..765ec205c 100644 --- a/leptos/src/lib.rs +++ b/leptos/src/lib.rs @@ -12,6 +12,10 @@ //! //! And you can do all three of these **using the same Leptos code.** //! +//! Take a look at the [Leptos Book](https://leptos-rs.github.io/leptos/) for a walkthrough of the framework. +//! Join us on our [Discord Channel](https://discord.gg/v38Eef6sWG) to see what the community is building. +//! Explore our [Examples](https://github.com/leptos-rs/leptos/tree/main/examples) to see Leptos in action. +//! //! # `nightly` Note //! Most of the examples assume you’re using `nightly` Rust. If you’re on stable, note the following: //! 1. You need to enable the `"stable"` flag in `Cargo.toml`: `leptos = { version = "0.0", features = ["stable"] }`