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

@ -61,7 +61,7 @@ const StartPage = ({ setUrl }: Props) => {
</ul>
</div>
) : null}
{inited && !ready && isLoggedIn ? (
{inited && !ready && isLoggedIn ? (
<div
className="bg-yellow-800/40 rounded-md border border-yellow-500 text-yellow-500 p-4"
role="alert"
@ -69,7 +69,7 @@ const StartPage = ({ setUrl }: Props) => {
<p className="font-bold">Be patient</p>
<p>We are starting the engines.</p>
</div>
): null}
) : null}
{!isLoggedIn ? (
<div
className="bg-blue-800/40 rounded-md border border-blue-500 text-blue-500 p-4"
@ -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>
);
};