export function isValidIndianPINCode(pincode: string): boolean {
  const pinRegex = /^\d{6}$/;
  return pinRegex.test(pincode);
}
