feat(frontend): add routing skeleton with workspace chat and login pages

This commit is contained in:
root
2026-05-12 13:13:52 +00:00
parent 196535ba5a
commit b3291b5874
6 changed files with 62 additions and 120 deletions

8
src/pages/ChatPage.tsx Normal file
View File

@@ -0,0 +1,8 @@
export default function ChatPage() {
return (
<section>
<h2></h2>
<p>///</p>
</section>
)
}

8
src/pages/LoginPage.tsx Normal file
View File

@@ -0,0 +1,8 @@
export default function LoginPage() {
return (
<section>
<h2></h2>
<p> Center token </p>
</section>
)
}

View File

@@ -0,0 +1,8 @@
export default function WorkspacePage() {
return (
<section>
<h2></h2>
<p> Guild/Channel </p>
</section>
)
}