add brainmade logo

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

View File

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