aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/settings/info/page.tsx
blob: 96deab96ad6e98521097c9b5faaa53fc1bc5ec86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { ChangePassword } from "@/components/settings/ChangePassword";
import { DeleteAccount } from "@/components/settings/DeleteAccount";
import UserDetails from "@/components/settings/UserDetails";
import UserOptions from "@/components/settings/UserOptions";

export default async function InfoPage() {
  return (
    <div className="flex flex-col gap-4">
      <UserDetails />
      <ChangePassword />
      <UserOptions />
      <DeleteAccount />
    </div>
  );
}