/** Shopper preferences: display currency, persisted in a cookie (SSR-safe). */ export function usePrefs() { const currency = useCookie("vmall.currency", { default: () => "USD" }); return { currency }; }