From 4099875e4d3ce6170fc7e75d53fcb4227ddb9abb Mon Sep 17 00:00:00 2001 From: jcstein Date: Fri, 21 Jun 2024 15:00:39 -0400 Subject: [PATCH] feat: add backlinks to tutorials --- src/pages/index.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 6fed4ce..b4b769c 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -29,11 +29,21 @@ const clients = [ href: 'https://github.com/celestiaorg/celestia-openrpc', current: false, }, + { + name: 'Golang tutorial', + href: 'https://docs.celestia.org/developers/golang-client-tutorial', + current: false, + }, { name: 'Rust (Community)', href: 'https://github.com/eigerco/celestia-node-rs', current: false, }, + { + name: 'Rust tutorial', + href: 'https://docs.celestia.org/developers/rust-client-tutorial', + current: false, + }, { name: 'Python (Community)', href: 'https://github.com/grumpyp/celestia-node-client-py',