import type { Metadata } from "next";

import { CatalogView } from "@/components/admin/catalog";

export const metadata: Metadata = {
  title: "Service Catalog — Washy Portal",
  description:
    "Define the wash packages providers sell and the price range for each",
};

export default function AdminCatalogPage() {
  return <CatalogView />;
}
