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