docs: fix broken links (#532)

This commit is contained in:
Marco Pasqualetti
2025-02-07 21:02:41 +01:00
committed by GitHub
parent f5a7480f69
commit ebe1abe422
4 changed files with 5 additions and 5 deletions
@@ -39,8 +39,8 @@ pub fn main() -> ApplicationState {
}
```
> For the sake of simplicity here we just enable a `String` but you can add Database connections or
> HTTP clients (take a look [here](/documentation/tutorial/api-fetching) for an example with an HTTP client).
> For simplicity, were using a `String` here, but you can add database connections or HTTP clients.
> Check out the [API fetching tutorial](/documentation/tutorial/api-fetching) for an example with an HTTP client.
Now the `ApplicationState` is available on all the handlers as following:
@@ -16,7 +16,7 @@ import Breadcrumbs from '@/components/Breadcrumbs'
Tuono is the CLI that provides all the needed commands to handle the full-stack project.
> ☝️ Check the [installation](/documentation/installation) page if you haven't installed the
> ☝️ Check the [installation](/documentation/getting-started/installation) page if you haven't installed the
> `tuono` CLI yet.
To list all the available commands, run `tuono -h`.
@@ -15,7 +15,7 @@ import Breadcrumbs from '@/components/Breadcrumbs'
## Overview
This tutorial is meant to give you a sneak peek at the framework and is intended to evolve during the
development - be sure to have [installed](/documentation/installation) the [latest version](https://crates.io/crates/tuono).
development - be sure to have [installed](/documentation/getting-started/installation) the [latest version](https://crates.io/crates/tuono).
This tutorial is not meant for people who don't know React - in that case, I suggest you first read the
[React Doc](https://react.dev/); Typescript and Rust knowledge is not a requirement though!
+1 -1
View File
@@ -38,7 +38,7 @@ Tuono addresses the following two limits:
#### NodeJs/Deno/Bun are the only runtimes that allow a React app to be server-side rendered (SSR)? (no)
Tuono is the first full-stack React framework with the server side written in Rust (check the [ssr-rs](https://github.com/tuono-labs/ssr-rs) crate).
Tuono is the first full-stack React framework with the server side written in Rust (check the [ssr-rs](https://github.com/Valerioageno/ssr-rs) crate).
Because of this, Tuono is extremely fast, and the requests are handled by a multithreaded Rust server.
React is still React - it is just superpowered.