import FormShell from "@/components/app/FormShell"
import PageHeader from "@/components/app/PageHeader"
import PageShell from "@/components/app/PageShell"
import { Button } from "@/components/ui/button"
import RoleForm from "@/features/roles/components/RoleForm"

export default function CreateRolePage() {
  return (
    <PageShell>
      <PageHeader
        title="Add Role"
        actions={
          <Button asChild variant="secondary">
            <a href="/roles">Back</a>
          </Button>
        }
      />
      <FormShell>
        <RoleForm />
      </FormShell>
    </PageShell>
  )
}
