import Link from "next/link";
import { PasswordForm } from "@/components/dashboard/password-form";

export default function ChangePasswordPage() {
  return (
    <div className="max-w-md">
      <Link href="/dashboard/profile" className="text-sm font-medium text-kolabora-primary">
        &larr; Back to Profile
      </Link>
      <h2 className="mt-4 text-lg font-semibold">Change Password</h2>
      <PasswordForm />
    </div>
  );
}
