diff --git a/app/(dashboard)/admin/page.tsx b/app/(dashboard)/admin/page.tsx deleted file mode 100644 index 6a5584f9..00000000 --- a/app/(dashboard)/admin/page.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import { getUsers, getTeams, getContacts } from "@/app/actions/users"; -import UsersAdmin from "@/components/users/users-admin"; - -export default async function AdminPage() { - const [users, teams, contacts] = await Promise.all([ - getUsers(), - getTeams(), - getContacts(), - ]); - - return ( - - ); -}