import type { Metadata } from "next";

import { CustomersView } from "@/components/admin/customers";

export const metadata: Metadata = {
  title: "Customers — Washy Portal",
  description:
    "Review customer registrations, verify documents, and manage account status",
};

export default function AdminCustomersPage() {
  return <CustomersView />;
}
