const phoneRegex = /^[0-9+\- ()]{1,500}$/
export const isValidPhone = (phone: string) => (
phoneRegex.test(phone.toLowerCase())
)