Skip to content

Commit 394ce2e

Browse files
committed
Basic homepage that isn't egregiously inaccurate
1 parent df94341 commit 394ce2e

File tree

2 files changed

+92
-123
lines changed

2 files changed

+92
-123
lines changed

app/routes/index.tsx

+15-13
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,13 @@ export default function Index() {
1818
/>
1919
<div className="absolute inset-0 bg-[color:rgba(254,204,27,0.5)] mix-blend-multiply" />
2020
</div>
21-
<div className="lg:pb-18 relative px-4 pb-8 pt-16 sm:px-6 sm:pb-14 sm:pt-24 lg:px-8 lg:pt-32">
21+
22+
<div className="lg:pb-18 relative w-full max-w-xl px-4 pb-8 pt-16 sm:px-6 sm:pb-14 sm:pt-24 lg:px-8 lg:pt-32">
2223
<h1 className="text-center text-6xl font-extrabold tracking-tight sm:text-8xl lg:text-9xl">
2324
<span className="block uppercase text-yellow-500 drop-shadow-md">
24-
Job bot prototype
25+
Euno
2526
</span>
2627
</h1>
27-
<p className="mx-auto mt-6 max-w-lg text-center text-xl text-white sm:max-w-3xl">
28-
Check the README.md file for instructions on how to get this
29-
project deployed.
30-
</p>
3128
<div className="mx-auto mt-10 max-w-sm sm:flex sm:max-w-none sm:justify-center">
3229
{user ? (
3330
<Logout />
@@ -37,13 +34,18 @@ export default function Index() {
3734
</div>
3835
)}
3936
</div>
40-
<a href="https://remix.run">
41-
<img
42-
src="https://user-images.githubusercontent.com/1500684/158298926-e45dafff-3544-4b69-96d6-d3bcc33fc76a.svg"
43-
alt="Remix"
44-
className="mx-auto mt-16 w-full max-w-[12rem] md:max-w-[16rem]"
45-
/>
46-
</a>
37+
<p className="mx-auto mt-6 max-w-md text-center text-xl text-white">
38+
This is a development placeholder for Euno, a Discord moderation
39+
bot.
40+
</p>
41+
<p className="mx-auto mt-6 max-w-md text-center text-xl text-white drop-shadow-md">
42+
Coming soon:
43+
<ul>
44+
<li>ticketing??</li>
45+
<li>activity reports</li>
46+
<li>other fun things</li>
47+
</ul>
48+
</p>
4749
</div>
4850
</div>
4951
</div>

0 commit comments

Comments
 (0)