Modals and API calls working for admin tab

This commit is contained in:
2025-03-01 23:32:41 -05:00
parent d68e8864a0
commit 843970e229
34 changed files with 1150 additions and 131 deletions

View File

@@ -1,10 +1,33 @@
import TabGroup, { Tab } from "@/components/tab/TabGroup";
import AccountsLoader from "@/ui/account/AccountsLoader";
export default function AdminPage(){
//TODO:
const tabs: Tab[] = [
{
tabHeader: "Accounts",
tabContent: <AccountsLoader/>
}
];
return (
<div>
Admin Page
</div>
<main
className="flex flex-col items-center justify-center"
>
<h1
className="text-4xl"
>
Admin Functions
</h1>
<div
className="w-full"
>
<TabGroup
tabs={tabs}
>
</TabGroup>
</div>
</main>
);
}