export const formatEventDate = (value: Date) => { return new Intl.DateTimeFormat("en-GB", { dateStyle: "medium", timeStyle: "short", }).format(value); }; export const formatPrice = (value: number) => { return new Intl.NumberFormat("en-GB", { style: "currency", currency: "EUR", maximumFractionDigits: 0, }).format(value); };