import { getAllServices, getCatalogFieldOptions } from "@/lib/admin-queries"; import { CatalogSearch } from "./CatalogSearch"; import { PageHeader } from "@/components/admin/PageHeader"; export const revalidate = 0; export default async function CatalogPage() { const [services, options] = await Promise.all([ getAllServices(), getCatalogFieldOptions(), ]); return (