// Shared plan constants — safe to import on both client and server.
// shopify.server.ts and app.billing.tsx both import from here.

export const PLAN_STARTER  = "Starter Plan";
export const PLAN_ADVANCED = "Advanced Plan";
export const PLAN_PLUS     = "Shopify Plus Plan";

export const ALL_PLANS = [PLAN_STARTER, PLAN_ADVANCED, PLAN_PLUS] as const;
export type PlanName = typeof ALL_PLANS[number];
