feat: add an about in the start footer
This commit is contained in:
parent
f48a8e9385
commit
b7deaa09e9
|
@ -69,7 +69,7 @@ const StartPage = ({ setUrl }: Props) => {
|
||||||
<p className="font-bold">Be patient</p>
|
<p className="font-bold">Be patient</p>
|
||||||
<p>We are starting the engines.</p>
|
<p>We are starting the engines.</p>
|
||||||
</div>
|
</div>
|
||||||
): null}
|
) : null}
|
||||||
{!isLoggedIn ? (
|
{!isLoggedIn ? (
|
||||||
<div
|
<div
|
||||||
className="bg-blue-800/40 rounded-md border border-blue-500 text-blue-500 p-4"
|
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>
|
<p>Please click login to start using the browser.</p>
|
||||||
</div>
|
</div>
|
||||||
) : null}
|
) : null}
|
||||||
|
<p className="text-white text-sm p-5 text-center">
|
||||||
|
Brought to you with 💚 by the
|
||||||
|
<a href="https://lumeweb.com" className="text-zinc-500 underline">
|
||||||
|
Lume
|
||||||
|
</a>
|
||||||
|
team, and grant sponsored by the
|
||||||
|
<a
|
||||||
|
href="https://sia.tech/about-sia-foundation"
|
||||||
|
className="text-zinc-500 underline"
|
||||||
|
>
|
||||||
|
Sia Foundation
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue