67 lines
1.2 KiB
TypeScript
67 lines
1.2 KiB
TypeScript
import {
|
|
CreditCardIcon,
|
|
KeyIcon,
|
|
LockClosedIcon,
|
|
UserGroupIcon,
|
|
UserIcon,
|
|
CodeIcon,
|
|
} from "@heroicons/react/solid";
|
|
import React, { ComponentProps } from "react";
|
|
|
|
import ErrorBoundary from "@lib/ErrorBoundary";
|
|
|
|
import NavTabs from "./NavTabs";
|
|
import Shell from "./Shell";
|
|
|
|
const tabs = [
|
|
{
|
|
name: "profile",
|
|
href: "/settings/profile",
|
|
icon: UserIcon,
|
|
},
|
|
{
|
|
name: "teams",
|
|
href: "/settings/teams",
|
|
icon: UserGroupIcon,
|
|
},
|
|
{
|
|
name: "security",
|
|
href: "/settings/security",
|
|
icon: KeyIcon,
|
|
},
|
|
{
|
|
name: "developer",
|
|
href: "/settings/developer",
|
|
icon: CodeIcon,
|
|
},
|
|
{
|
|
name: "billing",
|
|
href: "/settings/billing",
|
|
icon: CreditCardIcon,
|
|
},
|
|
{
|
|
name: "admin",
|
|
href: "/settings/admin",
|
|
icon: LockClosedIcon,
|
|
adminRequired: true,
|
|
},
|
|
];
|
|
|
|
export default function SettingsShell({
|
|
children,
|
|
...rest
|
|
}: { children: React.ReactNode } & ComponentProps<typeof Shell>) {
|
|
return (
|
|
<Shell {...rest}>
|
|
<div className="sm:mx-auto">
|
|
<NavTabs tabs={tabs} />
|
|
</div>
|
|
<main className="max-w-4xl">
|
|
<>
|
|
<ErrorBoundary>{children}</ErrorBoundary>
|
|
</>
|
|
</main>
|
|
</Shell>
|
|
);
|
|
}
|