feat: update UI

This commit is contained in:
2026-09-03 21:49:25 +07:00
parent fd85fd894b
commit b55e7f97c9
32 changed files with 1616 additions and 958 deletions
+15
View File
@@ -0,0 +1,15 @@
import PageHeader from '../../components/PageHeader';
function UsersPage() {
return (
<>
<PageHeader />
<div className="content-panel">
<h2>Users</h2>
<p>User management content will appear here.</p>
</div>
</>
)
}
export default UsersPage