feat: add AdminMemberTiers page, MemberBadge component, and SettingsLayout; refactor routes and sidebar for improved navigation

This commit is contained in:
2026-01-26 13:58:44 -06:00
parent 7ee5cb0d9c
commit ac8d40112e
10 changed files with 202 additions and 14 deletions

View File

@@ -0,0 +1,16 @@
import React from 'react';
import { Outlet } from 'react-router-dom';
import SettingsSidebar from '../components/SettingsSidebar';
const SettingsLayout = () => {
return (
<div className="flex flex-col gap-6 lg:flex-row">
<SettingsSidebar />
<div className="flex-1 min-w-0">
<Outlet />
</div>
</div>
);
};
export default SettingsLayout;