feat: add an about in the start footer

This commit is contained in:
Derrick Hammer 2023-11-04 18:34:54 -04:00
parent f48a8e9385
commit b7deaa09e9
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 15 additions and 2 deletions

View File

@ -79,6 +79,19 @@ const StartPage = ({ setUrl }: Props) => {
<p>Please click login to start using the browser.</p>
</div>
) : null}
<p className="text-white text-sm p-5 text-center">
Brought to you with 💚 by the &nbsp;
<a href="https://lumeweb.com" className="text-zinc-500 underline">
Lume
</a>
&nbsp; team, and grant sponsored by the &nbsp;
<a
href="https://sia.tech/about-sia-foundation"
className="text-zinc-500 underline"
>
Sia Foundation
</a>
</p>
</div>
);
};