aboutsummaryrefslogtreecommitdiff
path: root/web/src/app/dashboard/page.js
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-24 01:29:33 -0400
committerAndrew Lee <andrew@alee14.me>2025-03-24 01:29:33 -0400
commit0453bafa63ccd1057279a1be9286b3e7ebcb62d2 (patch)
tree0a71e0c06912a81ac009b196c5fee8dc9037cb60 /web/src/app/dashboard/page.js
parenta19b6ed4ef829697fd0be153af5e27c99f267787 (diff)
downloadAleeBot-0453bafa63ccd1057279a1be9286b3e7ebcb62d2.tar.gz
AleeBot-0453bafa63ccd1057279a1be9286b3e7ebcb62d2.tar.bz2
AleeBot-0453bafa63ccd1057279a1be9286b3e7ebcb62d2.zip
Depcreating web server, returning back to using Discord as settings
Diffstat (limited to 'web/src/app/dashboard/page.js')
-rw-r--r--web/src/app/dashboard/page.js18
1 files changed, 15 insertions, 3 deletions
diff --git a/web/src/app/dashboard/page.js b/web/src/app/dashboard/page.js
index d6e3a41..bab3bd8 100644
--- a/web/src/app/dashboard/page.js
+++ b/web/src/app/dashboard/page.js
@@ -8,7 +8,7 @@ export default async function Home() {
if (!session) redirect("/");
return (
- <div>
+ <>
<nav className="bg-gray-900 text-white">
<div className="max-w-screen-xl flex items-center justify-between mx-auto p-4">
<div className="flex items-center">
@@ -21,7 +21,19 @@ export default async function Home() {
</div>
</div>
</nav>
- <Guilds session={session} />
- </div>
+ <div className="flex">
+ <div>
+ <div>Settings</div>
+ <Guilds session={session} />
+ </div>
+ <div>
+ <h1 className="text-2xl">Logging</h1>
+ <h2>Channel 1</h2>
+ <h2>Channel 2</h2>
+ <h1 className="text-2xl">Quote of the Day</h1>
+ <h1 className="text-2xl">LLM Chatbot</h1>
+ </div>
+ </div>
+ </>
)
}