From c0dd912ad097aec169a5adfeb4e5cdc36522b1dc Mon Sep 17 00:00:00 2001 From: Patrick Bennett Date: Thu, 21 Nov 2024 14:38:36 -0500 Subject: [PATCH 1/3] chore(docs): Update README with information about gitbook branch and documentation location. Updated the README.md to include a new documentation section. The section provides a link to the online documentation and describes the syncing process with the docs/gitbook branch. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index e483c1c0..2394ba8d 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,11 @@ This section provides instructions for running the protocol and UI in a local Al pnpm run dev:testnet ``` +## Documentation +- The documentation is currently available online at https://txnlab.gitbook.io/reti-open-pooling +- The content is synced with the docs/gitbook branch of this repo inside the ./docs directory. + - The changes in that branch should periodically be merged into main but the docs/gitbook branch is the source of truth for the public docs site currently hosted at: https://txnlab.gitbook.io/reti-open-pooling + ## Additional Resources - **TEALScript Contracts**: Explore the smart contracts that power the protocol. [Read more](./contracts/README.md) From 722aa39d879d607b08a4af6a617f39bc033039dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Pier=C5=9Bcionek?= Date: Fri, 22 Nov 2024 15:37:09 +0100 Subject: [PATCH 2/3] feat(ui): optional extra footer item --- ui/src/components/Footer.tsx | 17 +++++++++++++++++ ui/src/vite-env.d.ts | 3 +++ 2 files changed, 20 insertions(+) diff --git a/ui/src/components/Footer.tsx b/ui/src/components/Footer.tsx index dd45d560..24f1896d 100644 --- a/ui/src/components/Footer.tsx +++ b/ui/src/components/Footer.tsx @@ -30,6 +30,22 @@ const navigation = [ }, ] +export function FooterExtraItem() { + return ( + <> + |{' '} + + {import.meta.env.VITE_FOOTER_EXTRA_ITEM} + + + ) +} + export function Footer() { return (