diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-03-25 17:23:30 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-03-25 17:23:30 -0400 |
| commit | 2c783bdb703e4ad69c9f3f846c2c9e6a527ccc80 (patch) | |
| tree | e02587b4dca4bd7027b4cc012d458b18392643ea /web/src/app/dashboard | |
| parent | 1c12d378d66b92b1674acd17640f2bac752da289 (diff) | |
| download | AleeBot-2c783bdb703e4ad69c9f3f846c2c9e6a527ccc80.tar.gz AleeBot-2c783bdb703e4ad69c9f3f846c2c9e6a527ccc80.tar.bz2 AleeBot-2c783bdb703e4ad69c9f3f846c2c9e6a527ccc80.zip | |
Implemented admin dashboard
Diffstat (limited to 'web/src/app/dashboard')
| -rw-r--r-- | web/src/app/dashboard/page.js | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/web/src/app/dashboard/page.js b/web/src/app/dashboard/page.js deleted file mode 100644 index a252958..0000000 --- a/web/src/app/dashboard/page.js +++ /dev/null @@ -1,44 +0,0 @@ -import Navbar from "@/app/components/Navbar"; - -export default function Dashboard() { - return ( - <> - <Navbar /> - <div className="flex flex-col gap-4 p-12"> - <h1 className="text-3xl">Guilds</h1> - <div className="grid grid-cols-2 md:grid-cols-4 gap-4"> - <div className="p-4 bg-gray-900 rounded-md"> - <h2 className="text-lg font-medium">Server 1</h2> - <p>ID: 23893249843983489 - Members: 30</p> - <span>Leave</span> {/* Add an "are you sure prompt" */} - </div> - <div className="p-4 bg-gray-900 rounded-md"> - <h2 className="text-lg font-medium">Server 2</h2> - <p>ID: 23893249843983489 - Members: 30</p> - <span>Leave</span> - </div> - <div className="p-4 bg-gray-900 rounded-md"> - <h2 className="text-lg font-medium">Server 3</h2> - <p>ID: 23893249843983489 - Members: 30</p> - <span>Leave</span> - </div> - <div className="p-4 bg-gray-900 rounded-md"> - <h2 className="text-lg font-medium">Server 4</h2> - <p>ID: 23893249843983489 - Members: 30</p> - <span>Leave</span> - </div> - <div className="p-4 bg-gray-900 rounded-md"> - <h2 className="text-lg font-medium">Server 5</h2> - <p>ID: 23893249843983489 - Members: 30</p> - <span>Leave</span> - </div> - <div className="p-4 bg-gray-900 rounded-md"> - <h2 className="text-lg font-medium">Server 6</h2> - <p>ID: 23893249843983489 - Members: 30</p> - <span>Leave</span> - </div> - </div> - </div> - </> - ); -} |
