// Single source of truth for shipping numbers — consumed by both the // cart's order summary (CartContent.tsx) and the /versand policy page, so // the two can never drift apart. // // The delivery-timeframe numbers (handling/transit days, Art. 246a § 1 // Abs. 1 Nr. 8 EGBGB) used to live here too, but now come from Payload's // Shipping Settings collection instead (see lib/payload.ts's // getShippingSettings()) — that duplication is exactly why the // ShippingMethods CMS title once carried a different, drifted day-range // than this file did. Cost/threshold below have the same drift risk // against Payload's ShippingMethods price/freeShippingThreshold fields, // not yet addressed here. export const SHIPPING_COST = 2.9; export const FREE_SHIPPING_THRESHOLD = 39;