import type { Metadata } from "next";

import { PackagesView } from "@/components/provider/packages/PackagesView";

export const metadata: Metadata = {
  title: "Provider Catalog Management — Washy Portal",
  description:
    "Browse the catalog packages available to providers and manage which services you offer",
};

export default function ProviderCatalogPage() {
  return <PackagesView />;
}
