From b7deaa09e91e0af177e392675c3530448a48954b Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sat, 4 Nov 2023 18:34:54 -0400 Subject: [PATCH] feat: add an about in the start footer --- src/components/StartPage.tsx | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/components/StartPage.tsx b/src/components/StartPage.tsx index 8556712..cf76797 100644 --- a/src/components/StartPage.tsx +++ b/src/components/StartPage.tsx @@ -61,7 +61,7 @@ const StartPage = ({ setUrl }: Props) => { ) : null} - {inited && !ready && isLoggedIn ? ( + {inited && !ready && isLoggedIn ? (
{

Be patient

We are starting the engines.

- ): null} + ) : null} {!isLoggedIn ? (
{

Please click login to start using the browser.

) : null} +

+ Brought to you with 💚 by the   + + Lume + +   team, and grant sponsored by the   + + Sia Foundation + +

); };