add brainmade logo

This commit is contained in:
2025-09-08 21:29:19 -04:00
parent ed42c831de
commit 41bd1fce38

View File

@@ -3,38 +3,44 @@ import { A } from "@solidjs/router";
export default () => {
const randomTablePath = `/t/abcd`;
return (
<div class="flex flex-col absolute center">
<h1>Welcome to games.drm.dev!</h1>
<p>
This website is a real-time multiplayer platform for playing
card games online.
</p>
<br />
<p>
Games happen at <strong>tables</strong>. A table is any url of
the form{" "}
<span class="font-mono text-[var(--light-purple)]">
games.drm.dev/t/
<span class="text-[var(--yellow)]">*</span>
</span>
</p>
<br />
<p>
Go to the same one as your friend and you will find them there!
</p>
<br />
<p>
If you have a table key in mind (the part after /t/), then plug
it in to your URL bar! Or, here's a couple links to random
tables:
</p>
<br />
<p>
With no one in it:{" "}
<A href={randomTablePath}>
https://www.games.drm.dev{randomTablePath}
</A>
</p>
</div>
<>
<div class="flex flex-col absolute center">
<h1>Welcome to games.drm.dev!</h1>
<p>
This website is a real-time multiplayer platform for playing card
games online.
</p>
<br />
<p>
Games happen at <strong>tables</strong>. A table is any url of the
form{" "}
<span class="font-mono text-[var(--light-purple)]">
games.drm.dev/t/
<span class="text-[var(--yellow)]">*</span>
</span>
</p>
<br />
<p>Go to the same one as your friend and you will find them there!</p>
<br />
<p>
If you have a table key in mind (the part after /t/), then plug it in
to your URL bar! Or, here's a couple links to random tables:
</p>
<br />
<p>
With no one in it:{" "}
<A href={randomTablePath}>
https://www.games.drm.dev{randomTablePath}
</A>
</p>
</div>
<a href="https://brainmade.org" target="_blank">
<img
src="https://brainmade.org/white-logo.svg"
class="fixed bl m-2"
width="80"
/>
</a>
</>
);
};