1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-24 23:01:05 +03:00

WIP my account page

This commit is contained in:
Quentin Gliech
2023-04-26 14:10:19 +02:00
parent d5bdf2ab15
commit 415d06f209
17 changed files with 4898 additions and 2244 deletions

View File

@@ -20,7 +20,7 @@ const Layout: React.FC<{ children?: React.ReactNode }> = ({ children }) => {
<div className="bg-grey-25 text-black-900 dark:bg-black-800 dark:text-white flex flex-col min-h-screen">
<NavBar className="mx-auto px-3 py-4 container">
<NavItem route={{ type: "home" }}>Home</NavItem>
<NavItem route={{ type: "dumb" }}>Dumb</NavItem>
<NavItem route={{ type: "account" }}>My Account</NavItem>
</NavBar>
<main className="mx-auto p-4 container">{children}</main>