/**
 * Canonical list of customer-facing page-organizer routes.
 *
 * Every route in this array must have a corresponding pageLayoutPointers row
 * seeded in the DB (enforced post-P2 by seed-coverage.test.ts).
 */
export const CUSTOMER_ROUTES = [
  'home',
  'about',
  'faq',
  'contact',
  'favorites',
  'wishlist',
  'stores',
  'club',
  'category',
] as const;

export type CustomerRoute = (typeof CUSTOMER_ROUTES)[number];
